Compare commits
32 Commits
2985472c47
...
833b07361a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
833b07361a | ||
| 08dcc6d99e | |||
|
|
a0cdade719 | ||
| 7999f2cdd3 | |||
|
|
4e480b4af8 | ||
| f4e4f35cde | |||
|
|
2926cbf1eb | ||
| 7df0322120 | |||
| 0667415d61 | |||
|
|
7cf4724c5f | ||
| 2546e88b3b | |||
| e7673f5994 | |||
| 0d7947fb20 | |||
|
|
fda23bb61e | ||
|
|
05e984cf5b | ||
|
|
6198b56b94 | ||
|
|
2499267fe2 | ||
|
|
279fd6322b | ||
|
|
f2063b610e | ||
| b3d6a1d74d | |||
|
|
5f8ef6d063 | ||
| a96d18000e | |||
| f102b1bdb2 | |||
|
|
12537631a0 | ||
| 20011060eb | |||
|
|
a159e24723 | ||
| e442e7bf3c | |||
| e6f81f4ad7 | |||
|
|
bf31453ece | ||
|
|
54f088f356 | ||
| 3a58fd6b3b | |||
|
|
0f5a912515 |
@@ -1,6 +1,6 @@
|
||||
services:
|
||||
audiobookshelf:
|
||||
image: ghcr.io/advplyr/audiobookshelf:2.20.0
|
||||
image: ghcr.io/advplyr/audiobookshelf:2.22.0
|
||||
ports:
|
||||
- 13378:80
|
||||
volumes:
|
||||
|
||||
@@ -10,6 +10,7 @@ include:
|
||||
- pingvin/docker-compose.yml
|
||||
- pocketid/docker-compose.yml
|
||||
- spliit/docker-compose.yml
|
||||
- shlink/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.7-rootless
|
||||
image: gitea/gitea:1.23.8-rootless
|
||||
restart: always
|
||||
volumes:
|
||||
- ${GITEA_DATA_LOCATION}:/var/lib/gitea
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
services:
|
||||
homarr:
|
||||
container_name: homarr
|
||||
image: ghcr.io/homarr-labs/homarr:v1.17.0
|
||||
image: ghcr.io/homarr-labs/homarr:v1.18.0
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
services:
|
||||
immich-server:
|
||||
container_name: immich_server
|
||||
image: ghcr.io/immich-app/immich-server:v1.131.3
|
||||
image: ghcr.io/immich-app/immich-server:v1.132.1
|
||||
# extends:
|
||||
# file: hwaccel.transcoding.yml
|
||||
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
|
||||
|
||||
@@ -16,7 +16,7 @@ services:
|
||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||
|
||||
paperless:
|
||||
image: ghcr.io/paperless-ngx/paperless-ngx:2.15.3
|
||||
image: ghcr.io/paperless-ngx/paperless-ngx:2.16.1
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- db
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
services:
|
||||
pingvin:
|
||||
image: stonith404/pingvin-share:v1.11.1
|
||||
image: stonith404/pingvin-share:v1.12.0
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 3042:3000
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
services:
|
||||
pocket-id:
|
||||
image: ghcr.io/pocket-id/pocket-id:v0.48.0
|
||||
image: ghcr.io/pocket-id/pocket-id:v0.52.0
|
||||
restart: unless-stopped
|
||||
env_file: .env
|
||||
ports:
|
||||
|
||||
5
shlink/.env.example
Normal file
5
shlink/.env.example
Normal file
@@ -0,0 +1,5 @@
|
||||
SHLINK_DOMAIN=
|
||||
SHLINK_IS_HTTPS_ENABLED=
|
||||
SHLINK_GEOIP_LICENSE_KEY=
|
||||
|
||||
SLINK_API_KEY=
|
||||
29
shlink/docker-compose.yml
Normal file
29
shlink/docker-compose.yml
Normal file
@@ -0,0 +1,29 @@
|
||||
services:
|
||||
shlink:
|
||||
image: shlinkio/shlink:4.4
|
||||
container_name: shlink
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8085:8080"
|
||||
environment:
|
||||
DEFAULT_DOMAIN: ${SHLINK_DOMAIN}
|
||||
IS_HTTPS_ENABLED: ${SHLINK_IS_HTTPS_ENABLED}
|
||||
GEOLITE_LICENSE_KEY: ${SHLINK_GEOIP_LICENSE_KEY}
|
||||
INITIAL_API_KEY: ${SHLINK_API_KEY}
|
||||
DB_DRIVER: postgres
|
||||
DB_HOST: shlink_db
|
||||
DB_NAME: ${SHLINK_POSTGRES_DB}
|
||||
DB_USER: ${SHLINK_POSTGRES_USER}
|
||||
DB_PASSWORD: ${SHLINK_POSTGRES_PASSWORD}
|
||||
depends_on:
|
||||
- shlink_db
|
||||
shlink_db:
|
||||
image: postgres:17
|
||||
container_name: shlink_db
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ${SHLINK_POSTGRES_DIR}:/var/lib/postgresql/data
|
||||
environment:
|
||||
POSTGRES_DB: ${SHLINK_POSTGRES_DB}
|
||||
POSTGRES_USER: ${SHLINK_POSTGRES_USER}
|
||||
POSTGRES_PASSWORD: ${SHLINK_POSTGRES_PASSWORD}
|
||||
@@ -25,7 +25,7 @@ services:
|
||||
- ${LIVEKIT_CONFIG_DIR}/config.yaml:/etc/livekit.yaml:ro
|
||||
mautrix-signal:
|
||||
container_name: mautrix-signal
|
||||
image: dock.mau.dev/mautrix/signal:v0.8.2
|
||||
image: dock.mau.dev/mautrix/signal:v0.8.3
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ${MAUTRIX_SIGNAL_DATA_DIR}:/data
|
||||
@@ -40,7 +40,8 @@ services:
|
||||
POSTGRES_PASSWORD: ${MAUTRIX_SIGNAL_POSTGRES_PASSWORD}
|
||||
mautrix-whatsapp:
|
||||
container_name: mautrix-whatsapp
|
||||
image: dock.mau.dev/mautrix/whatsapp:v0.12.0
|
||||
image: dock.mau.dev/mautrix/whatsapp:v0.12.1
|
||||
#image: petersmit27/mautrix-whatsapp:latest
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ${MAUTRIX_WHATSAPP_DATA_DIR}:/data
|
||||
@@ -56,7 +57,7 @@ services:
|
||||
POSTGRES_USER: ${MAUTRIX_WHATSAPP_POSTGRES_USER}
|
||||
POSTGRES_PASSWORD: ${MAUTRIX_WHATSAPP_POSTGRES_PASSWORD}
|
||||
mas:
|
||||
image: ghcr.io/element-hq/matrix-authentication-service:0.14.1
|
||||
image: ghcr.io/element-hq/matrix-authentication-service:0.16.0
|
||||
restart: unless-stopped
|
||||
working_dir: /config
|
||||
volumes:
|
||||
@@ -88,7 +89,7 @@ services:
|
||||
POSTGRES_INITDB_ARGS: '--encoding=UTF-8 --locale=C'
|
||||
synapse:
|
||||
container_name: synapse
|
||||
image: matrixdotorg/synapse:v1.128.0
|
||||
image: matrixdotorg/synapse:v1.129.0
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ${SYNAPSE_CONFIG_DIR}:/data
|
||||
|
||||
Reference in New Issue
Block a user