18 lines
329 B
YAML
18 lines
329 B
YAML
version: '2.4'
|
|
services:
|
|
django:
|
|
image: crocmagnon/blog
|
|
build: .
|
|
ports:
|
|
- 8000:8000
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./db:/db
|
|
- ./static:/app/staticfiles
|
|
restart: on-failure
|
|
tests:
|
|
image: crocmagnon/blog
|
|
build: .
|
|
command: ["/app/docker/runtests.sh"]
|
|
healthcheck: {}
|