immich-public-proxy/docker-compose.yml

18 lines
401 B
YAML
Raw Permalink Normal View History

2024-10-28 04:14:39 -04:00
services:
immich-public-proxy:
2024-10-31 12:44:16 -04:00
image: alangrainger/immich-public-proxy:latest
2024-10-28 04:14:39 -04:00
container_name: immich-public-proxy
2024-10-31 08:03:33 -04:00
restart: always
2024-10-28 04:14:39 -04:00
ports:
2024-10-29 14:57:44 -04:00
- ${PORT}:3000
environment:
- NODE_ENV=production
env_file:
- .env
2024-11-01 10:36:53 -04:00
volumes:
- ./config.json:/app/config.json:ro
2024-10-31 08:31:32 -04:00
healthcheck:
2024-10-31 14:17:58 -04:00
test: node /app/healthcheck.js
2024-10-31 08:31:32 -04:00
interval: 120s
start_period: 5s