diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..d720a83 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,18 @@ +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: \ No newline at end of file