Files
Quote-Generator-Client/docker-compose.yml
Ubuntu 016f7911f3
Some checks failed
Build Android App / build (push) Failing after 45s
Fixed netowork
2026-01-02 16:30:13 +00:00

24 lines
498 B
YAML

services:
quotegen-web:
build:
context: .
dockerfile: Dockerfile
container_name: quotegen_web
ports:
- "8087: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
networks:
- nginx_proxy_manager_default
networks:
nginx_proxy_manager_default:
external: true