infra-v1/applications/roles/home-apps/files/tandoor-compose.yml

43 lines
894 B
YAML
Raw Permalink Normal View History

2022-06-12 16:14:10 +00:00
version: '3'
services:
2022-06-14 18:15:07 +00:00
recipes_db:
container_name: recipes_db
2022-06-12 16:14:10 +00:00
image: postgres:11-alpine
restart: always
volumes:
- ./postgresql:/var/lib/postgresql/data
env_file:
- ./tandoor.env
2022-06-14 18:15:07 +00:00
recipes_web:
container_name: recipes_web
2022-06-12 16:14:10 +00:00
image: vabene1111/recipes
restart: always
env_file:
- ./tandoor.env
volumes:
- staticfiles:/opt/recipes/staticfiles
- nginx_config:/opt/recipes/nginx/conf.d
- ./mediafiles:/opt/recipes/mediafiles
depends_on:
2022-06-14 18:15:07 +00:00
- recipes_db
2022-06-12 16:14:10 +00:00
2022-06-14 18:15:07 +00:00
recipes_nginx:
container_name: recipes_nginx
2022-06-12 16:14:10 +00:00
image: nginx:mainline-alpine
restart: always
env_file:
2022-06-14 18:15:07 +00:00
- ./tandoor.env
2022-06-12 16:14:10 +00:00
volumes:
- nginx_config:/etc/nginx/conf.d:ro
- staticfiles:/static:ro
- ./mediafiles:/media:ro
ports:
- 1080:80
2022-06-14 18:15:07 +00:00
depends_on:
- web_recipes
2022-06-12 16:14:10 +00:00
volumes:
nginx_config:
staticfiles: