Compare commits
21 Commits
faab320276
...
e47a78d59f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e47a78d59f | ||
| d7bb2b43ed | |||
|
|
91c9b0edcf | ||
| ad8e1d1d6b | |||
|
|
8cffe84ee1 | ||
|
|
0d35e83d96 | ||
|
|
d9e6e98d92 | ||
|
|
6e44cbd22e | ||
|
|
a4a637ea4e | ||
|
|
6d79ddc1a1 | ||
| 1dbc270be2 | |||
|
|
1dc10dafbb | ||
|
|
c2e9283447 | ||
|
|
bb569d6b3b | ||
|
|
6c1b1a0d7a | ||
|
|
76f4c0463d | ||
|
|
f501e5baca | ||
| 5d83a45aba | |||
| 65a532eee8 | |||
|
|
a9012eaf07 | ||
|
|
207714547c |
@@ -6,5 +6,6 @@ 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.3-rootless
|
||||
image: gitea/gitea:1.23.4-rootless
|
||||
restart: always
|
||||
volumes:
|
||||
- ${GITEA_DATA_LOCATION}:/var/lib/gitea
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
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.126.1
|
||||
image: ghcr.io/immich-app/immich-server:v1.127.0
|
||||
# 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.126.1
|
||||
image: ghcr.io/immich-app/immich-machine-learning:v1.127.0
|
||||
# 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.9.1
|
||||
image: stonith404/pingvin-share:v1.10.1
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 3042:3000
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
services:
|
||||
pocket-id:
|
||||
image: ghcr.io/pocket-id/pocket-id:v0.32.0
|
||||
image: ghcr.io/pocket-id/pocket-id:v0.35.1
|
||||
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:
|
||||
|
||||
14
synapse/.env.example
Normal file
14
synapse/.env.example
Normal file
@@ -0,0 +1,14 @@
|
||||
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=
|
||||
43
synapse/docker-compose.yml
Normal file
43
synapse/docker-compose.yml
Normal file
@@ -0,0 +1,43 @@
|
||||
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