1 Commits

Author SHA1 Message Date
Renovate Bot
faab320276 Update stonith404/pingvin-share Docker tag to v1.9.1 2025-02-15 00:01:59 +00:00
8 changed files with 6 additions and 64 deletions

View File

@@ -6,6 +6,5 @@ include:
- paperless/docker-compose.yml - paperless/docker-compose.yml
- pingvin/docker-compose.yml - pingvin/docker-compose.yml
- pocketid/docker-compose.yml - pocketid/docker-compose.yml
- synapse/docker-compose.yml
- updater/docker-compose.yml - updater/docker-compose.yml
- vaultwarden/docker-compose.yml - vaultwarden/docker-compose.yml

View File

@@ -1,7 +1,7 @@
services: services:
gitea: gitea:
container_name: gitea container_name: gitea
image: gitea/gitea:1.23.4-rootless image: gitea/gitea:1.23.3-rootless
restart: always restart: always
volumes: volumes:
- ${GITEA_DATA_LOCATION}:/var/lib/gitea - ${GITEA_DATA_LOCATION}:/var/lib/gitea

View File

@@ -1,6 +1,7 @@
UPLOAD_LOCATION= UPLOAD_LOCATION=
IMMICH_DB_LOCATION= IMMICH_DB_LOCATION=
DB_HOSTNAME=
DB_USERNAME= DB_USERNAME=
DB_PASSWORD= DB_PASSWORD=
DB_DATABASE_NAME= DB_DATABASE_NAME=

View File

@@ -1,7 +1,7 @@
services: services:
immich-server: immich-server:
container_name: 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: # extends:
# file: hwaccel.transcoding.yml # file: hwaccel.transcoding.yml
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding # 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 container_name: immich_machine_learning
# For hardware acceleration, add one of -[armnn, cuda, openvino] to the image tag. # For hardware acceleration, add one of -[armnn, cuda, openvino] to the image tag.
# Example tag: ${IMMICH_VERSION:-release}-cuda # 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 # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
# file: hwaccel.ml.yml # 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 # service: cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable

View File

@@ -1,6 +1,6 @@
services: services:
pingvin: pingvin:
image: stonith404/pingvin-share:v1.10.1 image: stonith404/pingvin-share:v1.9.1
restart: unless-stopped restart: unless-stopped
ports: ports:
- 3042:3000 - 3042:3000

View File

@@ -1,12 +1,11 @@
services: services:
pocket-id: 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 restart: unless-stopped
env_file: .env env_file: .env
ports: ports:
- 3043:80 - 3043:80
volumes: volumes:
#TODO change this to a more appropriate location
- "./data:/app/backend/data" - "./data:/app/backend/data"
# Optional healthcheck # Optional healthcheck
healthcheck: healthcheck:

View File

@@ -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=

View File

@@ -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