Correction

This commit is contained in:
2024-04-21 17:14:48 +02:00
parent 8a25f53c99
commit 8a524c3e51
11 changed files with 357 additions and 141 deletions

View File

@ -3,7 +3,7 @@ URL : https://obsidian.md/
# Immich
Immich est une solution de sauvegarde de photos et de vid?os auto-h?berg?e tr?s performante, directement ? partir de votre t?l?phone portable.
Immich est une solution de sauvegarde de photos et de vidéos auto-hébergée trés performante, directement à partir de votre téléphone portable.
# Téléchargement, Configuration et Lancement

View File

@ -6,3 +6,72 @@ networks:
#### SERVICES
services:
## immich-server
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
command: [ "start.sh", "immich" ]
volumes:
- /home/ubuntu/docker/immich/upload:/usr/src/app/upload
env_file:
- .env
ports:
- 2283:3001
depends_on:
- redis
- postgres
restart: always
## immich-microservices:
immich-microservices:
container_name: immich-immich_microservices
hostname: immich-immich_microservices
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
extends:
file: hwaccel.yml
service: hwaccel
command: [ "start.sh", "microservices" ]
volumes:
- /home/ubuntu/docker/immich/upload:/usr/src/app/upload
env_file:
- .env
depends_on:
- redis
- database
restart: always
immich-machine-learning:
container_name: immich-machine-learning
hostname: immich-machine-learning
image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
volumes:
- /home/ubuntu/docker/immich/model-cache:/cache
env_file:
- .env
restart: always
## Redis
redis:
container_name: immich-redis
hostname: immich-redis
image: redis:6.2-alpine@sha256:70a7a5b641117670beae0d80658430853896b5ef269ccf00d1827427e3263fa3
restart: always
### postgres
postgres:
container_name: guacamole-postgres
hostname: guacamole-postgres
environment:
PGDATA: /var/lib/postgresql/data/immich
POSTGRES_DB: guacamole_db
POSTGRES_PASSWORD: 'P@ssword!Here!123456'
POSTGRES_USER: guacamole_user
TZ: Europe/Paris
image: postgres:15.6-alpine
networks:
- back_network
restart: always
volumes:
- ./data:/var/lib/postgresql/data:rw