linktree/compose.yml

24 lines
458 B
YAML
Raw Normal View History

2025-06-16 13:37:14 +02:00
services:
2025-06-17 11:26:27 +02:00
linktree:
2025-06-16 13:37:14 +02:00
build: .
ports:
- "8080:8080"
volumes:
2025-06-17 11:26:27 +02:00
- ./links.toml:/app/links:ro
2025-06-16 13:37:14 +02:00
environment:
- NODE_ENV=production
restart: unless-stopped
# Optional: nginx proxy for production
nginx:
image: nginx:alpine
ports:
- "80:80"
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
depends_on:
- preact-linktree
restart: unless-stopped
profiles:
- production