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

37 lines
697 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:
- .env
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
- memcached
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
memcached:
image: memcached:1.6.9
restart: always
command: ["memcached", "-m", "128"]
2020-09-09 18:34:21 +02:00
volumes:
staticfiles: {}
media: {}