Compare commits
1 Commits
e47a78d59f
...
faab320276
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
faab320276 |
@@ -6,6 +6,5 @@ include:
|
||||
- paperless/docker-compose.yml
|
||||
- pingvin/docker-compose.yml
|
||||
- pocketid/docker-compose.yml
|
||||
- synapse/docker-compose.yml
|
||||
- updater/docker-compose.yml
|
||||
- vaultwarden/docker-compose.yml
|
||||
@@ -1,7 +1,7 @@
|
||||
services:
|
||||
gitea:
|
||||
container_name: gitea
|
||||
image: gitea/gitea:1.23.4-rootless
|
||||
image: gitea/gitea:1.23.3-rootless
|
||||
restart: always
|
||||
volumes:
|
||||
- ${GITEA_DATA_LOCATION}:/var/lib/gitea
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
UPLOAD_LOCATION=
|
||||
IMMICH_DB_LOCATION=
|
||||
|
||||
DB_HOSTNAME=
|
||||
DB_USERNAME=
|
||||
DB_PASSWORD=
|
||||
DB_DATABASE_NAME=
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
services:
|
||||
immich-server:
|
||||
container_name: immich_server
|
||||
image: ghcr.io/immich-app/immich-server:v1.127.0
|
||||
image: ghcr.io/immich-app/immich-server:v1.126.1
|
||||
# extends:
|
||||
# file: hwaccel.transcoding.yml
|
||||
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
|
||||
@@ -24,7 +24,7 @@ services:
|
||||
container_name: immich_machine_learning
|
||||
# For hardware acceleration, add one of -[armnn, cuda, openvino] to the image tag.
|
||||
# Example tag: ${IMMICH_VERSION:-release}-cuda
|
||||
image: ghcr.io/immich-app/immich-machine-learning:v1.127.0
|
||||
image: ghcr.io/immich-app/immich-machine-learning:v1.126.1
|
||||
# extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
|
||||
# file: hwaccel.ml.yml
|
||||
# service: cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
services:
|
||||
pingvin:
|
||||
image: stonith404/pingvin-share:v1.10.1
|
||||
image: stonith404/pingvin-share:v1.9.1
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 3042:3000
|
||||
|
||||
@@ -1,12 +1,11 @@
|
||||
services:
|
||||
pocket-id:
|
||||
image: ghcr.io/pocket-id/pocket-id:v0.35.1
|
||||
image: ghcr.io/pocket-id/pocket-id:v0.32.0
|
||||
restart: unless-stopped
|
||||
env_file: .env
|
||||
ports:
|
||||
- 3043:80
|
||||
volumes:
|
||||
#TODO change this to a more appropriate location
|
||||
- "./data:/app/backend/data"
|
||||
# Optional healthcheck
|
||||
healthcheck:
|
||||
|
||||
@@ -1,14 +0,0 @@
|
||||
SYNAPSE_POSTGRES_DATA_DIR=
|
||||
SYNAPSE_CONFIG_DIR=
|
||||
|
||||
POSTGRES_DB=
|
||||
POSTGRES_USER=
|
||||
POSTGRES_PASSWORD=
|
||||
|
||||
|
||||
MAS_CONFIG_DIR=
|
||||
|
||||
MAS_POSTGRES_DATA_DIR=
|
||||
MAS_POSTGRES_DB=
|
||||
MAS_POSTGRES_USER=
|
||||
MAS_POSTGRES_PASSWORD=
|
||||
@@ -1,43 +0,0 @@
|
||||
services:
|
||||
mas:
|
||||
image: ghcr.io/element-hq/matrix-authentication-service:0.14.1
|
||||
restart: unless-stopped
|
||||
working_dir: /config
|
||||
volumes:
|
||||
- ${MAS_CONFIG_DIR}:/config
|
||||
environment:
|
||||
MAS_CONFIG: /config/config.yaml
|
||||
ports:
|
||||
- "8090:8090"
|
||||
depends_on:
|
||||
- mas_db
|
||||
mas_db:
|
||||
image: docker.io/library/postgres:17
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ${MAS_POSTGRES_DATA_DIR}:/var/lib/postgresql/data
|
||||
environment:
|
||||
POSTGRES_DB: ${MAS_POSTGRES_DB}
|
||||
POSTGRES_USER: ${MAS_POSTGRES_USER}
|
||||
POSTGRES_PASSWORD: ${MAS_POSTGRES_PASSWORD}
|
||||
synapse_db:
|
||||
image: docker.io/library/postgres:17
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ${SYNAPSE_POSTGRES_DATA_DIR}:/var/lib/postgresql/data
|
||||
environment:
|
||||
POSTGRES_DB: ${POSTGRES_DB}
|
||||
POSTGRES_USER: ${POSTGRES_USER}
|
||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||
POSTGRES_INITDB_ARGS: '--encoding=UTF-8 --locale=C'
|
||||
synapse:
|
||||
image: matrixdotorg/synapse:v1.125.0
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ${SYNAPSE_CONFIG_DIR}:/data
|
||||
ports:
|
||||
- "8008:8008"
|
||||
depends_on:
|
||||
- synapse_db
|
||||
- mas
|
||||
|
||||
Reference in New Issue
Block a user