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

14 lines
383 B
YAML
Raw Normal View History

2024-10-28 08:14:39 +00:00
services:
immich-public-proxy:
2024-10-31 16:44:16 +00:00
image: 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-11-04 19:23:34 +00:00
- "3000:3000"
environment:
2024-11-11 12:28:49 +00:00
- IMMICH_URL=http://your-internal-immich-server:2283
2024-11-04 10:15:00 +00:00
healthcheck:
2024-11-16 13:04:21 +00:00
test: wget -q --spider http://localhost:3000/healthcheck || exit 1
2024-11-04 10:15:00 +00:00
start_period: 10s
timeout: 5s