zuul extra wip

This commit is contained in:
2025-03-04 14:14:09 +01:00
parent f8f73925e3
commit 3e1b8a629e
9 changed files with 335 additions and 90 deletions

27
docker-compose.yaml Normal file
View File

@@ -0,0 +1,27 @@
version: '3'
services:
game:
build:
context: .
dockerfile: Dockerfile-game
container_name: game-1
ports:
- "8867:8867"
networks:
- app-network
nginx:
build:
context: .
dockerfile: Dockerfile-nginx
container_name: nginx-1
ports:
- "8067:80"
depends_on:
- game
networks:
- app-network
networks:
app-network:
driver: bridge