This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/docker-compose.yml

32 lines
589 B
YAML
Raw Normal View History

2020-08-17 08:23:00 +02:00
version: '2.4'
services:
django:
image: crocmagnon/blog:latest
build:
context: .
args:
POETRY_OPTIONS: "--no-dev"
2020-08-17 08:23:00 +02:00
env_file:
2021-12-27 22:10:28 +01:00
- envs/local.env
2020-08-17 08:23:00 +02:00
volumes:
- ./db:/db
2020-09-09 18:34:21 +02:00
- staticfiles:/app/staticfiles
- media:/app/media
2020-08-17 08:23:00 +02:00
restart: on-failure
2020-09-09 18:34:21 +02:00
init: true
tty: true
depends_on:
- nginx
2020-09-09 18:34:21 +02:00
nginx:
image: nginx:1.19.2
ports:
- 8000:80
volumes:
- staticfiles:/app/static
- media:/app/media
- ./docker/nginx-dev.conf:/etc/nginx/conf.d/default.conf
2020-09-09 18:34:21 +02:00
volumes:
staticfiles: {}
media: {}