mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 10:28:54 -07:00
43e9529ce4
* feat(.well-known): add .well-known/immich to reference API endpoint
* feat(.well-known): make schema optional (defaults to https)
* adjust method comment to be a little less confusing
* fix casting issue with resovled url
* include when checking Well-known, update server hint
* add validation for login form's server url
* consolidate common process into resolveAndSetEndpoint
* fix missed prettier formatting
* revert translation changes
* update environment variable description, hopefully a bit clearer
* rename environment variable to IMMICH_API_URL_EXTERNAL
* comment out optional env variables
* fix(web): browser-side api client to include authorization token
* Revert "fix(web): browser-side api client to include authorization token"
This reverts commit 60e338938f
.
* remove multi-domain related changes
96 lines
2.2 KiB
YAML
96 lines
2.2 KiB
YAML
version: "3.8"
|
|
|
|
services:
|
|
immich-server:
|
|
container_name: immich_server
|
|
image: altran1502/immich-server:staging
|
|
entrypoint: ["/bin/sh", "./start-server.sh"]
|
|
volumes:
|
|
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- NODE_ENV=production
|
|
depends_on:
|
|
- redis
|
|
- database
|
|
restart: always
|
|
|
|
immich-microservices:
|
|
container_name: immich_microservices
|
|
image: altran1502/immich-server:staging
|
|
entrypoint: ["/bin/sh", "./start-microservices.sh"]
|
|
volumes:
|
|
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- NODE_ENV=production
|
|
depends_on:
|
|
- redis
|
|
- database
|
|
restart: always
|
|
|
|
immich-machine-learning:
|
|
container_name: immich_machine_learning
|
|
image: altran1502/immich-machine-learning:staging
|
|
entrypoint: ["/bin/sh", "./entrypoint.sh"]
|
|
volumes:
|
|
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- NODE_ENV=production
|
|
depends_on:
|
|
- database
|
|
restart: always
|
|
|
|
immich-web:
|
|
container_name: immich_web
|
|
image: altran1502/immich-web:staging
|
|
entrypoint: ["/bin/sh", "./entrypoint.sh"]
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
# Rename these values for svelte public interface
|
|
- PUBLIC_IMMICH_SERVER_URL=${IMMICH_SERVER_URL}
|
|
- PUBLIC_IMMICH_API_URL_EXTERNAL=${IMMICH_API_URL_EXTERNAL}
|
|
restart: always
|
|
|
|
redis:
|
|
container_name: immich_redis
|
|
image: redis:6.2
|
|
restart: always
|
|
|
|
database:
|
|
container_name: immich_postgres
|
|
image: postgres:14
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
|
POSTGRES_USER: ${DB_USERNAME}
|
|
POSTGRES_DB: ${DB_DATABASE_NAME}
|
|
PG_DATA: /var/lib/postgresql/data
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
restart: always
|
|
|
|
immich-proxy:
|
|
container_name: immich_proxy
|
|
image: altran1502/immich-proxy:staging
|
|
environment:
|
|
# Make sure these values get passed through from the env file
|
|
- IMMICH_SERVER_URL
|
|
- IMMICH_WEB_URL
|
|
ports:
|
|
- 2283:8080
|
|
logging:
|
|
driver: none
|
|
depends_on:
|
|
- immich-server
|
|
restart: always
|
|
|
|
volumes:
|
|
pgdata:
|