mirror of
https://github.com/alangrainger/immich-public-proxy.git
synced 2025-01-16 12:56:45 +01:00
18 lines
333 B
YAML
18 lines
333 B
YAML
|
version: "3"
|
||
|
|
||
|
services:
|
||
|
public-proxy:
|
||
|
image: "node:22"
|
||
|
container_name: immich-public-proxy
|
||
|
working_dir: /home/node/app
|
||
|
environment:
|
||
|
- NODE_ENV=production
|
||
|
volumes:
|
||
|
- ./:/home/node/app:Z
|
||
|
ports:
|
||
|
- ${PORT}:3000
|
||
|
command: "npm start"
|
||
|
restart: always
|
||
|
healthcheck:
|
||
|
disable: true
|