From 614cd18e7201130e62221a3b04ebef2712b33f46 Mon Sep 17 00:00:00 2001 From: Lio Young Date: Sun, 17 Oct 2021 18:37:35 +0200 Subject: [PATCH] docker compose --- docker-compose.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..39709e3 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,22 @@ +version: "3.8" +services: + cultum: + container_name: cultum + hostname: cultum + restart: always + network_mode: "bridge" + ports: + - 80:80 + volumes: + - ./lux/cultum/config.yml:/opt/cultum/config.yml + build: ./cultum + thaldrin: + build: . + container_name: thaldrin + hostname: cadaver + depends_on: + - cultum + restart: always + network_mode: "bridge" + volumes: + - ./config.ts:/opt/thaldrin/config.ts