You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

107 lines
2.6 KiB

3 years ago
version: "3.8"
services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:main
3 years ago
entrypoint: ["/bin/sh", "./start-server.sh"]
volumes:
3 years ago
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- /mnt/pokecenter/Media/Photos:/mnt/media/photos:ro
3 years ago
env_file:
- stack.env
3 years ago
depends_on:
- redis
- database
- typesense
restart: always
ports:
- 3001:3001
3 years ago
immich-microservices:
container_name: immich_microservices
image: ghcr.io/immich-app/immich-server:main
3 years ago
entrypoint: ["/bin/sh", "./start-microservices.sh"]
volumes:
3 years ago
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- /mnt/pokecenter/Media/Photos:/mnt/media/photos:ro
3 years ago
env_file:
- stack.env
3 years ago
depends_on:
- redis
- database
- typesense
restart: always
ports:
- 3002:3002
3 years ago
immich-machine-learning:
container_name: immich_machine_learning
image: ghcr.io/immich-app/immich-machine-learning:main
3 years ago
volumes:
3 years ago
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- /usr/docker_binds/immich/model-cache:/cache
3 years ago
env_file:
- stack.env
3 years ago
restart: always
ports:
- 3003:3003
3 years ago
immich-web:
container_name: immich_web
image: ghcr.io/immich-app/immich-web:main
3 years ago
entrypoint: ["/bin/sh", "./entrypoint.sh"]
3 years ago
env_file:
- stack.env
3 years ago
restart: always
ports:
- 3000:3000
3 years ago
typesense:
container_name: immich_typesense
image: typesense/typesense:0.24.0
environment:
3 years ago
- TYPESENSE_API_KEY=${TYPESENSE_API_KEY}
3 years ago
- TYPESENSE_DATA_DIR=/data
3 years ago
logging:
driver: none
volumes:
- /usr/docker_binds/immich/tsdata:/data
3 years ago
restart: always
redis:
container_name: immich_redis
image: redis:6.2
restart: always
database:
container_name: immich_postgres
image: postgres:14
3 years ago
env_file:
- stack.env
3 years ago
environment:
3 years ago
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME}
PG_DATA: /var/lib/postgresql/data
3 years ago
volumes:
- /usr/docker_binds/immich/pgdata:/var/lib/postgresql/data
3 years ago
restart: always
3 years ago
immich-proxy:
container_name: immich_proxy
image: ghcr.io/immich-app/immich-proxy:main
3 years ago
environment:
3 years ago
# Make sure these values get passed through from the env file
3 years ago
- IMMICH_SERVER_URL
- IMMICH_WEB_URL
3 years ago
ports:
- 2283:8080
depends_on:
- immich-server
3 years ago
restart: always
volumes:
pgdata:
model-cache:
tsdata: