tictactoe/docker-compose.yml
Parley Hatch 8da71f3781 Use host port 8090 (8080 was taken by another local container)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-05-31 18:23:35 -06:00

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