immich-public-proxy/docker-compose.yml

13 lines
318 B
YAML
Raw Normal View History

2024-10-28 09:14:39 +01:00
services:
immich-public-proxy:
2024-10-31 17:44:16 +01:00
image: alangrainger/immich-public-proxy:latest
2024-10-28 09:14:39 +01:00
container_name: immich-public-proxy
2024-10-31 13:03:33 +01:00
restart: always
2024-10-28 09:14:39 +01:00
ports:
2024-10-29 19:57:44 +01:00
- ${PORT}:3000
2024-11-01 19:19:49 +01:00
env_file: .env
2024-11-04 11:15:00 +01:00
healthcheck:
test: wget -q http://localhost:3000/healthcheck || exit 1
start_period: 10s
timeout: 5s