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.yaml

22 lines
363 B
YAML

version: '2.4'
services:
django:
image: crocmagnon/blog:dev
build:
context: .
args:
POETRY_OPTIONS: "--no-dev"
env_file:
- envs/local.env
volumes:
- ./db:/db
- staticfiles:/app/staticfiles
- media:/app/media
restart: on-failure
init: true
tty: true
volumes:
staticfiles: {}
media: {}