You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
498 B
YAML
24 lines
498 B
YAML
5 years ago
|
version: "3"
|
||
|
services:
|
||
|
web:
|
||
|
image: nginx
|
||
|
volumes:
|
||
|
- ./nginx/nginx.conf:/tmp/nginx.conf
|
||
|
environment:
|
||
|
- FLASK_SERVER_ADDR=backend:9091
|
||
|
command: /bin/bash -c "envsubst < /tmp/nginx.conf > /etc/nginx/conf.d/default.conf && nginx -g 'daemon off;'"
|
||
|
ports:
|
||
|
- 8080:80
|
||
|
depends_on:
|
||
|
- backend
|
||
|
backend:
|
||
|
build: flask
|
||
|
environment:
|
||
|
- FLASK_SERVER_PORT=9091
|
||
|
volumes:
|
||
|
- ./flask:/src
|
||
|
depends_on:
|
||
|
- mongo
|
||
|
mongo:
|
||
|
image: mongo
|