Files
landing-web/docker-compose.yml
T
2026-07-08 20:38:41 +02:00

24 lines
431 B
YAML

services:
landing-server:
build:
context: .
container_name: landing-server
restart: unless-stopped
env_file:
- .env
expose:
- "3000"
networks:
- proxy
healthcheck:
test: ["CMD-SHELL", "wget -q --spider http://127.0.0.1:3000/ || exit 1"]
interval: 30s
timeout: 5s
retries: 3
start_period: 20s
networks:
nginx:
external: true
name: proxy