2024-10-28 09:14:39 +01:00
|
|
|
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:
|
2024-10-28 20:47:14 +01:00
|
|
|
- ${SERVER_PORT}:3000
|
2024-10-28 09:14:39 +01:00
|
|
|
command: "npm start"
|
|
|
|
restart: always
|
|
|
|
healthcheck:
|
|
|
|
disable: true
|