preliminary ci/cd setup (horrors await me)

This commit is contained in:
2026-02-28 14:52:59 -06:00
parent 24b9f21541
commit 5a309e45fe
3 changed files with 88 additions and 0 deletions

23
docker-compose.prod.yaml Normal file
View File

@@ -0,0 +1,23 @@
services:
api:
image: git.vxbard.net/homeburger/agologum-api:latest
container_name: agologum-api
restart: always
ports:
- "5000:80"
networks:
- web
client:
image: git.vxbard.net/homeburger/agologum-client:latest
container_name: agologum-client
restart: always
ports:
- "8080:80"
networks:
- web
networks:
web:
external: true