18 lines
357 B
YAML
18 lines
357 B
YAML
|
version: '3.8'
|
||
|
|
||
|
services:
|
||
|
wagtail:
|
||
|
image: code.headbright.be/konstantin/iamkonstantin:1.0.0
|
||
|
container_name: wagtail
|
||
|
volumes:
|
||
|
- ./website/:/usr/src/app/:consistent
|
||
|
ports:
|
||
|
- 8000:8000
|
||
|
command : python manage.py runserver 0.0.0.0:8000
|
||
|
env_file:
|
||
|
- ./.env.production
|
||
|
networks:
|
||
|
- website
|
||
|
|
||
|
networks:
|
||
|
website:
|