13 lines
367 B
YAML
13 lines
367 B
YAML
# Run the game locally with OrbStack's Docker engine:
|
|
# docker compose up -d --build
|
|
# open http://localhost:8090
|
|
# docker compose down
|
|
# (Host port 8090 chosen to avoid colliding with other local containers.)
|
|
services:
|
|
tictactoe:
|
|
build: .
|
|
image: tictactoe:latest
|
|
container_name: tictactoe
|
|
ports:
|
|
- "8090:80"
|
|
restart: unless-stopped
|