This repository has been archived on 2025-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
Files
lan-web/docker-compose.yml
2025-09-16 09:25:23 +02:00

20 lines
383 B
YAML

version: "3.8"
services:
lan-web:
build: .
image: lan-web:latest
restart: unless-stopped
ports:
- "${APP_PORT:-8081}:${APP_PORT:-8081}"
env_file:
- .env
volumes:
- ./:/app:ro
healthcheck:
test:
["CMD-SHELL", "curl -f http://localhost:${APP_PORT:-8081}/ || exit 1"]
interval: 30s
timeout: 5s
retries: 3