mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-25 10:18:07 +02:00
https://github.com/compose-spec/compose-spec/blob/master/spec.md#version-top-level-element Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
22 lines
491 B
YAML
22 lines
491 B
YAML
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:
|
|
- 80:80
|
|
depends_on:
|
|
- backend
|
|
backend:
|
|
build: flask
|
|
environment:
|
|
- FLASK_SERVER_PORT=9091
|
|
volumes:
|
|
- ./flask:/src
|
|
depends_on:
|
|
- mongo
|
|
mongo:
|
|
image: mongo
|