Gitlab CI/CD Pipeline

This commit is contained in:
2025-05-29 18:51:59 +00:00
parent cb4eb80105
commit 5a73be331b
30 changed files with 432 additions and 144 deletions

24
docker-compose.yml Normal file
View File

@@ -0,0 +1,24 @@
services:
gateway:
image: registry.boomlab.party/rheinsw/rheinsw-mono-repo/gateway
container_name: gateway
ports:
- "8080:8080"
env_file:
- ./gateway.env
server:
image: registry.boomlab.party/rheinsw/rheinsw-mono-repo/server
container_name: server
ports:
- "8081:8081"
env_file:
- ./server.env
frontend:
image: registry.boomlab.party/rheinsw/rheinsw-mono-repo/frontend
container_name: frontend
env_file:
- ./frontend.env
ports:
- "5100:3000"