2024-10-28 04:14:39 -04:00
|
|
|
services:
|
2024-10-30 14:20:47 -04:00
|
|
|
immich-public-proxy:
|
|
|
|
image: ghcr.io/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
|
2024-10-30 14:20:47 -04:00
|
|
|
environment:
|
|
|
|
- NODE_ENV=production
|
|
|
|
env_file:
|
|
|
|
- .env
|
2024-10-31 08:31:32 -04:00
|
|
|
healthcheck:
|
|
|
|
test: ([ "$(wget -qO- ${PROXY_PUBLIC_URL}/healthcheck)" = "ok" ] && exit 0) || exit 1
|
|
|
|
interval: 120s
|
|
|
|
start_period: 5s
|