Download this file
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
version: '2' services: flask: restart: always build: context: . dockerfile: compose/flask/Dockerfile volumes: - .:/ct_eligible ports: - "4000:4000" depends_on: - mongodb mongodb: image: mongo:4.0.2 ports: - "27017:27017"