Files
Quote-Generator-Client/docker-compose.yml
ImBenji f1ce1c77a4
Some checks failed
Build Android App / build (push) Has been cancelled
add ad services and Docker configuration for web app
2026-01-02 15:21:27 +00:00

18 lines
387 B
YAML

services:
quotegen-web:
build:
context: .
dockerfile: Dockerfile
container_name: quotegen_web
ports:
- "8080:80"
restart: unless-stopped
environment:
- TZ=UTC
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost/"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s