zuul extra wip
This commit is contained in:
27
docker-compose.yaml
Normal file
27
docker-compose.yaml
Normal 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
|
||||
Reference in New Issue
Block a user