From 92475c508b8454d686af50128750ebfc85503e7b Mon Sep 17 00:00:00 2001 From: Konstantin Kostov Date: Tue, 12 Mar 2024 12:01:42 +0100 Subject: [PATCH] add example dockerfile --- docker-compose.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 docker-compose.yaml 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