Files
sharechess/docker-compose.yml
2025-07-25 23:06:57 +03:00

22 lines
432 B
YAML

version: "3.8"
services:
sharechess:
build:
context: .
dockerfile: Dockerfile
container_name: sharechess
ports:
- "8012:80"
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost/"]
interval: 30s
timeout: 5s
retries: 5
start_period: 5s
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"