Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
CorrectRoadH committed Jun 27, 2024
1 parent b7fdba7 commit d18648d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
6 changes: 2 additions & 4 deletions Apps/Immich/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,5 @@
"id": "immich",
"version": "1.106.2",
"image": "ghcr.io/immich-app/immich-server",
"youtube": "https://youtu.be/ZIx2jDHYjjE",
"docs_link": "",
"big_bear_cosmos_youtube": ""
}
"youtube": "https://youtu.be/ZIx2jDHYjjE"
}
10 changes: 5 additions & 5 deletions Apps/Immich/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ services:
immich-server:
container_name: immich-server
image: ghcr.io/immich-app/immich-server:v1.106.2
ports: # Mapping ports from the host OS to the container
ports:
- 2283:3001
volumes: # Mounting directories for persistent data storage
volumes:
- /DATA/AppData/$AppID/upload:/usr/src/app/upload
environment:
DB_HOSTNAME: immich-postgres
Expand All @@ -16,15 +16,15 @@ services:
DB_PORT: "5432"
REDIS_HOSTNAME: immich-redis
IMMICH_MACHINE_LEARNING_URL: http://immich-machine-learning:3003
depends_on: # Dependencies to ensure the order of service startup
depends_on:
- redis
- database
restart: unless-stopped # Policy to restart unless stopped
restart: unless-stopped

networks:
- immich_network

x-casaos: # CasaOS specific configuration
x-casaos:
envs:
- container: DB_HOSTNAME
description:
Expand Down

0 comments on commit d18648d

Please sign in to comment.