1
0
Fork 0
mirror of https://github.com/alangrainger/immich-public-proxy.git synced 2024-12-28 03:41:58 +00:00
immich-public-proxy/docker-compose.yml

16 lines
409 B
YAML
Raw Normal View History

2024-10-28 08:14:39 +00:00
services:
immich-public-proxy:
image: ghcr.io/alangrainger/immich-public-proxy:latest
2024-10-28 08:14:39 +00:00
container_name: immich-public-proxy
2024-10-31 12:03:33 +00:00
restart: always
2024-10-28 08:14:39 +00:00
ports:
2024-10-29 18:57:44 +00:00
- ${PORT}:3000
environment:
- NODE_ENV=production
env_file:
- .env
2024-10-31 12:31:32 +00:00
healthcheck:
test: ([ "$(wget -qO- ${PROXY_PUBLIC_URL}/healthcheck)" = "ok" ] && exit 0) || exit 1
interval: 120s
start_period: 5s