From 77a25f4685b360fa4fded397aa40a756ca898a8d Mon Sep 17 00:00:00 2001 From: array-in-a-matrix Date: Mon, 29 Apr 2024 16:35:24 -0400 Subject: [PATCH] simple docker compose --- docker-compose.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..b07f071 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,13 @@ +services: + brainwine: + # build: . + image: brainwine:latest + ports: + - "5001:5001" # gateway + - "5002:5002" # server + - "5003:5003" # portal + volumes: + - bw-data:/data + +volumes: + bw-data: {} \ No newline at end of file