diff --git a/Dockerfile b/Dockerfile index 9b39a07..54d17c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,5 +15,5 @@ RUN apt-get update && apt-get install -y \ COPY requirements.txt requirements.txt RUN pip install -r requirements.txt EXPOSE 5000 -COPY . . + CMD ["flask", "run","--debugger"] \ No newline at end of file diff --git a/docker-compose-dev.yaml b/docker-compose-dev.yaml index 895fc5f..3478dff 100644 --- a/docker-compose-dev.yaml +++ b/docker-compose-dev.yaml @@ -1,16 +1,16 @@ -version: "3.3" +version: "3" + services: mongo: image: mongo - restart: always environment: MONGO_INITDB_ROOT_USERNAME: xcoder MONGO_INITDB_ROOT_PASSWORD: 4dun4710 volumes: - - ./mongo_data_dir/:/data/db/ + - mongo_data:/data/db/ + mongo-express: image: mongo-express - restart: always ports: - 8081:8081 environment: @@ -19,13 +19,16 @@ services: ME_CONFIG_OPTIONS_EDITORTHEME: ambiance ME_CONFIG_BASICAUTH_USERNAME: xcoder ME_CONFIG_BASICAUTH_PASSWORD: 4dun4710 + web: build: . - ports: - - "5000:5000" + - 5000:5000 environment: ADUNATIO_PRIV_KEY: /code/privkey.pem FLASK_DEBUG: 1 volumes: - .:/code + +volumes: + mongo_data: \ No newline at end of file