simple docker compose

This commit is contained in:
array-in-a-matrix 2024-04-29 16:35:24 -04:00
parent 4207d15ef4
commit 77a25f4685

13
docker-compose.yml Normal file
View file

@ -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: {}