|
|
|
@@ -920,8 +920,8 @@ services:
|
|
|
|
|
ENGINE_mastodon-pg-db: postgres@dbgate-plugin-postgres
|
|
|
|
|
|
|
|
|
|
LABEL_mongodb: mongodb
|
|
|
|
|
URI_mongodb: mongodb://mongodb:27017
|
|
|
|
|
ENGINE_mongodb: mongo@dbgate-plugin-mongo
|
|
|
|
|
URI_mongodb: mongodb://root:${MONGO_INITDB_ROOT_PASSWORD}@mongodb:27017
|
|
|
|
|
ENGINE_mongodb: mongo@dbgate-plugin-mongo-v2
|
|
|
|
|
|
|
|
|
|
LABEL_netbox-db: netbox-db
|
|
|
|
|
SERVER_netbox-db: netbox-db
|
|
|
|
@@ -1975,6 +1975,138 @@ services:
|
|
|
|
|
type: bind
|
|
|
|
|
bind:
|
|
|
|
|
create_host_path: true
|
|
|
|
|
immich-server:
|
|
|
|
|
container_name: immich-server
|
|
|
|
|
depends_on:
|
|
|
|
|
redis:
|
|
|
|
|
condition: service_started
|
|
|
|
|
required: true
|
|
|
|
|
immich-pg-db:
|
|
|
|
|
condition: service_started
|
|
|
|
|
required: true
|
|
|
|
|
environment:
|
|
|
|
|
DB_DATABASE_NAME: immich
|
|
|
|
|
DB_HOSTNAME: immich-pg-db
|
|
|
|
|
DB_PORT: 5432
|
|
|
|
|
DB_USERNAME: immich
|
|
|
|
|
DB_PASSWORD: ${IMMICH_DB_PASSWORD}
|
|
|
|
|
IMMICH_TELEMETRY_INCLUDE: all
|
|
|
|
|
healthcheck:
|
|
|
|
|
disable: false
|
|
|
|
|
image: ghcr.io/immich-app/immich-server:release
|
|
|
|
|
ports:
|
|
|
|
|
- 2283:2283
|
|
|
|
|
restart: always
|
|
|
|
|
volumes:
|
|
|
|
|
# Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
|
|
|
|
|
- ${DOCKER_VOLUME_STORAGE}/Pics:/usr/src/app/upload
|
|
|
|
|
- /etc/localtime:/etc/localtime:ro
|
|
|
|
|
immich-machine-learning:
|
|
|
|
|
container_name: immich-machine-learning
|
|
|
|
|
depends_on:
|
|
|
|
|
immich-server:
|
|
|
|
|
condition: service_started
|
|
|
|
|
required: true
|
|
|
|
|
healthcheck:
|
|
|
|
|
disable: false
|
|
|
|
|
image: ghcr.io/immich-app/immich-machine-learning:release
|
|
|
|
|
restart: always
|
|
|
|
|
volumes:
|
|
|
|
|
- immich-model-cache:/cache
|
|
|
|
|
immich-pg-db:
|
|
|
|
|
command: >-
|
|
|
|
|
postgres
|
|
|
|
|
-c shared_preload_libraries=vectors.so
|
|
|
|
|
-c 'search_path="$$user", public, vectors'
|
|
|
|
|
-c logging_collector=on
|
|
|
|
|
-c max_wal_size=2GB
|
|
|
|
|
-c shared_buffers=512MB
|
|
|
|
|
-c wal_compression=on
|
|
|
|
|
container_name: immich-pg-db
|
|
|
|
|
environment:
|
|
|
|
|
POSTGRES_PASSWORD: ${IMMICH_DB_PASSWORD}
|
|
|
|
|
POSTGRES_USER: immich
|
|
|
|
|
POSTGRES_DB: immich
|
|
|
|
|
expose:
|
|
|
|
|
- 5432
|
|
|
|
|
healthcheck:
|
|
|
|
|
test: >-
|
|
|
|
|
pg_isready --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" || exit 1;
|
|
|
|
|
Chksum="$$(psql --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" --tuples-only --no-align
|
|
|
|
|
--command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')";
|
|
|
|
|
echo "checksum failure count is $$Chksum";
|
|
|
|
|
[ "$$Chksum" = '0' ] || exit 1
|
|
|
|
|
interval: 5m
|
|
|
|
|
start_interval: 30s
|
|
|
|
|
start_period: 5m
|
|
|
|
|
image: tensorchord/pgvecto-rs:pg14-v0.2.1
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
volumes:
|
|
|
|
|
- ${DOCKER_VOLUME_CONFIG}/immich/db:/var/lib/postgresql/data
|
|
|
|
|
immich-public-proxy:
|
|
|
|
|
container_name: immich-public-proxy
|
|
|
|
|
depends_on:
|
|
|
|
|
immich-server:
|
|
|
|
|
condition: service_started
|
|
|
|
|
required: true
|
|
|
|
|
environment:
|
|
|
|
|
IMMICH_URL: http://immich-server:2283
|
|
|
|
|
expose:
|
|
|
|
|
- 3000
|
|
|
|
|
healthcheck:
|
|
|
|
|
test: wget -q --spider http://localhost:3000/share/healthcheck || exit 1
|
|
|
|
|
start_period: 10s
|
|
|
|
|
timeout: 5s
|
|
|
|
|
image: alangrainger/immich-public-proxy:latest
|
|
|
|
|
labels:
|
|
|
|
|
homepage: enable
|
|
|
|
|
homepage_proto: http
|
|
|
|
|
homepage_port: 3000
|
|
|
|
|
homepage_url: pics.${MY_TLD}
|
|
|
|
|
homepage.uptime-kuma.enabled: true
|
|
|
|
|
homepage.uptime-kuma.monitor.url: https://pics.${MY_TLD}
|
|
|
|
|
homepage.group: Lifestyle
|
|
|
|
|
homepage.name: Immich
|
|
|
|
|
homepage.href: https://pics.${MY_TLD}
|
|
|
|
|
homepage.icon: immich.svg
|
|
|
|
|
homepage.description: High performance self-hosted photo and video management solution
|
|
|
|
|
restart: always
|
|
|
|
|
immich-power-tools:
|
|
|
|
|
container_name: immich-power-tools
|
|
|
|
|
environment:
|
|
|
|
|
IMMICH_API_KEY: ${IMMICH_POWER_TOOLS_KEY}
|
|
|
|
|
IMMICH_URL: http://immich-server:2283
|
|
|
|
|
EXTERNAL_IMMICH_URL: https://pics.trez.wtf
|
|
|
|
|
image: ghcr.io/varun-raj/immich-power-tools:latest
|
|
|
|
|
ports:
|
|
|
|
|
- 54018:3000
|
|
|
|
|
influxdb2:
|
|
|
|
|
container_name: influxdb2
|
|
|
|
|
environment:
|
|
|
|
|
DOCKER_INFLUXDB_INIT_MODE: setup
|
|
|
|
|
DOCKER_INFLUXDB_INIT_USERNAME: admin
|
|
|
|
|
DOCKER_INFLUXDB_INIT_PASSWORD: ${INFLUXDB2_ADMIN_PASSWORD}
|
|
|
|
|
DOCKER_INFLUXDB_INIT_ADMIN_TOKEN: /run/secrets/influxdb2-admin-token
|
|
|
|
|
DOCKER_INFLUXDB_INIT_ORG: rinoa
|
|
|
|
|
DOCKER_INFLUXDB_INIT_BUCKET: rinoa
|
|
|
|
|
image: influxdb:2-alpine
|
|
|
|
|
labels:
|
|
|
|
|
homepage: enable
|
|
|
|
|
homepage_proto: http
|
|
|
|
|
homepage_port: 8086
|
|
|
|
|
homepage_url: influxdb.${MY_TLD}
|
|
|
|
|
homepage.uptime-kuma.enabled: true
|
|
|
|
|
homepage.uptime-kuma.monitor.url: https://influxdb.${MY_TLD}
|
|
|
|
|
homepage.group: System Administration
|
|
|
|
|
homepage.name: InfluxDBv2
|
|
|
|
|
homepage.href: https://invid.${MY_TLD}
|
|
|
|
|
homepage.icon: influxdb.svg
|
|
|
|
|
homepage.description: Scalable datastore for metrics, events, and real-time analytics
|
|
|
|
|
ports:
|
|
|
|
|
- 8086:8086
|
|
|
|
|
volumes:
|
|
|
|
|
- influxdb2-data:/var/lib/influxdb2
|
|
|
|
|
- influxdb2-config:/etc/influxdb2
|
|
|
|
|
invidious:
|
|
|
|
|
container_name: invidious
|
|
|
|
|
depends_on:
|
|
|
|
@@ -2184,72 +2316,6 @@ services:
|
|
|
|
|
type: bind
|
|
|
|
|
bind:
|
|
|
|
|
create_host_path: true
|
|
|
|
|
immich-server:
|
|
|
|
|
container_name: immich_server
|
|
|
|
|
depends_on:
|
|
|
|
|
redis:
|
|
|
|
|
condition: service_started
|
|
|
|
|
required: true
|
|
|
|
|
immich-pg-db:
|
|
|
|
|
condition: service_started
|
|
|
|
|
required: true
|
|
|
|
|
environment:
|
|
|
|
|
DB_DATABASE_NAME: immich
|
|
|
|
|
DB_USERNAME: immich
|
|
|
|
|
DB_PASSWORD: ${IMMICH_DB_PASSWORD}
|
|
|
|
|
IMMICH_TELEMETRY_INCLUDE: all
|
|
|
|
|
healthcheck:
|
|
|
|
|
disable: false
|
|
|
|
|
image: ghcr.io/immich-app/immich-server:release
|
|
|
|
|
ports:
|
|
|
|
|
- 2283:2283
|
|
|
|
|
restart: always
|
|
|
|
|
volumes:
|
|
|
|
|
# Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
|
|
|
|
|
- ${DOCKER_VOLUME_STORAGE}/Pics:/usr/src/app/upload
|
|
|
|
|
- /etc/localtime:/etc/localtime:ro
|
|
|
|
|
immich-machine-learning:
|
|
|
|
|
container_name: immich_machine_learning
|
|
|
|
|
depends_on:
|
|
|
|
|
immich-server:
|
|
|
|
|
condition: service_started
|
|
|
|
|
required: true
|
|
|
|
|
healthcheck:
|
|
|
|
|
disable: false
|
|
|
|
|
image: ghcr.io/immich-app/immich-machine-learning:release
|
|
|
|
|
restart: always
|
|
|
|
|
volumes:
|
|
|
|
|
- immich-model-cache:/cache
|
|
|
|
|
immich-pg-db:
|
|
|
|
|
command: >-
|
|
|
|
|
postgres
|
|
|
|
|
-c shared_preload_libraries=vectors.so
|
|
|
|
|
-c 'search_path="$$user", public, vectors'
|
|
|
|
|
-c logging_collector=on
|
|
|
|
|
-c max_wal_size=2GB
|
|
|
|
|
-c shared_buffers=512MB
|
|
|
|
|
-c wal_compression=on
|
|
|
|
|
container_name: immich-pg-db
|
|
|
|
|
environment:
|
|
|
|
|
POSTGRES_PASSWORD: ${JOPLIN_POSTGRES_PASSWORD}
|
|
|
|
|
POSTGRES_USER: immich
|
|
|
|
|
POSTGRES_DB: immich
|
|
|
|
|
expose:
|
|
|
|
|
- 5432
|
|
|
|
|
healthcheck:
|
|
|
|
|
test: >-
|
|
|
|
|
pg_isready --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" || exit 1;
|
|
|
|
|
Chksum="$$(psql --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" --tuples-only --no-align
|
|
|
|
|
--command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')";
|
|
|
|
|
echo "checksum failure count is $$Chksum";
|
|
|
|
|
[ "$$Chksum" = '0' ] || exit 1
|
|
|
|
|
interval: 5m
|
|
|
|
|
start_interval: 30s
|
|
|
|
|
start_period: 5m
|
|
|
|
|
image: tensorchord/pgvecto-rs:pg14-v0.2.1
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
volumes:
|
|
|
|
|
- ${DOCKER_VOLUME_CONFIG}/immich/db:/var/lib/postgresql/data
|
|
|
|
|
it-tools:
|
|
|
|
|
container_name: it-tools
|
|
|
|
|
image: ghcr.io/corentinth/it-tools:latest
|
|
|
|
@@ -3346,7 +3412,7 @@ services:
|
|
|
|
|
ALLOW_EMPTY_PASSWORD: yes
|
|
|
|
|
MONGODB_REPLICA_SET_MODE: primary
|
|
|
|
|
MONGODB_REPLICA_SET_NAME: rinoa
|
|
|
|
|
MONGODB_REPLICA_SET_KEY:
|
|
|
|
|
MONGODB_REPLICA_SET_KEY: ${MONGODB_REPLICA_SET_KEY}
|
|
|
|
|
image: bitnami/mongodb:7.0
|
|
|
|
|
ports:
|
|
|
|
|
- 27017:27017
|
|
|
|
@@ -3652,59 +3718,35 @@ services:
|
|
|
|
|
volume: {}
|
|
|
|
|
nextcloud:
|
|
|
|
|
container_name: nextcloud
|
|
|
|
|
depends_on:
|
|
|
|
|
mariadb:
|
|
|
|
|
condition: service_started
|
|
|
|
|
required: true
|
|
|
|
|
restart: true
|
|
|
|
|
environment:
|
|
|
|
|
PGID: ${PGID}
|
|
|
|
|
PUID: ${PUID}
|
|
|
|
|
TZ: ${TZ}
|
|
|
|
|
DOCKER_HOST: tcp://dockerproxy:2375
|
|
|
|
|
LOG_LEVEL: debug
|
|
|
|
|
hostname: Rinoa
|
|
|
|
|
image: lscr.io/linuxserver/nextcloud:latest
|
|
|
|
|
SKIP_DOMAIN_VALIDATION: false
|
|
|
|
|
APACHE_ADDITIONAL_NETWORK:
|
|
|
|
|
APACHE_IP_BINDING: 0.0.0.0
|
|
|
|
|
APACHE_PORT: 11000
|
|
|
|
|
expose:
|
|
|
|
|
- 11000
|
|
|
|
|
image: nextcloud/all-in-one:latest
|
|
|
|
|
labels:
|
|
|
|
|
homepage.group: Personal Services
|
|
|
|
|
homepage.name: NextCloud
|
|
|
|
|
homepage.href: https://cloud.${MY_TLD}
|
|
|
|
|
homepage.icon: nextcloud.png
|
|
|
|
|
homepage.icon: nextcloud.svg
|
|
|
|
|
homepage.description: Private Cloud
|
|
|
|
|
swag: enable
|
|
|
|
|
swag_port: 11000
|
|
|
|
|
swag_proto: https
|
|
|
|
|
swag_url: cloud.${MY_TLD}
|
|
|
|
|
swag.uptime-kuma.enabled: true
|
|
|
|
|
swag.uptime-kuma.monitor.url: https://cloud.${MY_TLD}
|
|
|
|
|
networks:
|
|
|
|
|
default: null
|
|
|
|
|
ports:
|
|
|
|
|
- mode: ingress
|
|
|
|
|
protocol: tcp
|
|
|
|
|
published: "444"
|
|
|
|
|
target: 443
|
|
|
|
|
- 56713:8080
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
volumes:
|
|
|
|
|
- bind:
|
|
|
|
|
create_host_path: true
|
|
|
|
|
read_only: true
|
|
|
|
|
source: /etc/localtime
|
|
|
|
|
target: /etc/localtime
|
|
|
|
|
type: bind
|
|
|
|
|
- bind:
|
|
|
|
|
create_host_path: true
|
|
|
|
|
source: ${DOCKER_VOLUME_CONFIG}/nextcloud
|
|
|
|
|
target: /config
|
|
|
|
|
type: bind
|
|
|
|
|
- bind:
|
|
|
|
|
create_host_path: true
|
|
|
|
|
source: /rinoa-storage
|
|
|
|
|
target: /storage
|
|
|
|
|
type: bind
|
|
|
|
|
- bind:
|
|
|
|
|
create_host_path: true
|
|
|
|
|
source: ${DOCKER_VOLUME_CONFIG}/nextcloud
|
|
|
|
|
target: /data
|
|
|
|
|
type: bind
|
|
|
|
|
- /etc/localtime:/etc/localtime:ro
|
|
|
|
|
- ${DOCKER_VOLUME_CONFIG}/nextcloud/config:/config
|
|
|
|
|
- ${DOCKER_VOLUME_CONFIG}/nextcloud/data:/data
|
|
|
|
|
ollama:
|
|
|
|
|
container_name: ollama
|
|
|
|
|
image: ollama/ollama
|
|
|
|
@@ -4377,8 +4419,12 @@ services:
|
|
|
|
|
condition: service_started
|
|
|
|
|
required: true
|
|
|
|
|
environment:
|
|
|
|
|
MONGO_URL: mongodb://mongodb:27017/rocketchat?replicaSet=rinoa
|
|
|
|
|
MONGO_OPLOG_URL: mongodb://mongodb:27017/local?replicaSet=rinoa
|
|
|
|
|
ADMIN_USERNAME: Trez.One
|
|
|
|
|
ADMIN_NAME: Charish Patel
|
|
|
|
|
ADMIN_PASS: ${ROCKETCHAT_ADMIN_PASSWORD}
|
|
|
|
|
ADMIN_EMAIL: charish.patel@trez.wtf
|
|
|
|
|
MONGO_URL: mongodb://rocketchat:${ROCKETCHAT_MONGODB_PASSWORD}@mongodb:27017/rocketchat?replicaSet=rinoa
|
|
|
|
|
MONGO_OPLOG_URL: mongodb://rocketchat:${ROCKETCHAT_MONGODB_PASSWORD}@mongodb:27017/local?replicaSet=rinoa
|
|
|
|
|
ROOT_URL: https://chat.trez.wtf
|
|
|
|
|
PORT: 3000
|
|
|
|
|
DEPLOY_METHOD: docker
|
|
|
|
@@ -6916,32 +6962,6 @@ services:
|
|
|
|
|
published: "3010"
|
|
|
|
|
target: 3000
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
yacht:
|
|
|
|
|
container_name: yacht
|
|
|
|
|
depends_on:
|
|
|
|
|
docker-socket-proxy:
|
|
|
|
|
condition: service_started
|
|
|
|
|
required: true
|
|
|
|
|
environment:
|
|
|
|
|
DOCKER_HOST: tcp://dockerproxy:2375
|
|
|
|
|
image: selfhostedpro/yacht
|
|
|
|
|
labels:
|
|
|
|
|
homepage.group: System Administration
|
|
|
|
|
homepage.name: Yacht
|
|
|
|
|
homepage.href: https://yacht.${MY_TLD}
|
|
|
|
|
homepage.icon: yacht.svg
|
|
|
|
|
homepage.description: Web interface for managing docker containers
|
|
|
|
|
swag: enable
|
|
|
|
|
swag_proto: http
|
|
|
|
|
swag_port: 8000
|
|
|
|
|
swag_url: yacht.${MY_TLD}
|
|
|
|
|
swag.uptime-kuma.enabled: true
|
|
|
|
|
swag.uptime-kuma.monitor.url: https://yacht.${MY_TLD}
|
|
|
|
|
ports:
|
|
|
|
|
- 19733:8000
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
volumes:
|
|
|
|
|
- ${DOCKER_VOLUME_CONFIG}/yacht:/config
|
|
|
|
|
your_spotify:
|
|
|
|
|
container_name: your_spotify
|
|
|
|
|
environment:
|
|
|
|
@@ -7468,6 +7488,10 @@ volumes:
|
|
|
|
|
name: hortusfox_db_data
|
|
|
|
|
immich-model-cache:
|
|
|
|
|
name: immich-model-cache
|
|
|
|
|
influxdb2-data:
|
|
|
|
|
name: influxdb2-data
|
|
|
|
|
influxdb2-config:
|
|
|
|
|
name: influxdb2-config
|
|
|
|
|
invidious-postgres:
|
|
|
|
|
name: invidious-postgres
|
|
|
|
|
invoice_ninja_public:
|
|
|
|
@@ -7617,4 +7641,4 @@ x-shared:
|
|
|
|
|
image: ${ZAMMAD_IMAGE_REPO}:${ZAMMAD_VERSION}
|
|
|
|
|
restart: ${ZAMMAD_RESTART}
|
|
|
|
|
volumes:
|
|
|
|
|
- zammad-storage:/opt/zammad/storage
|
|
|
|
|
- zammad-storage:/opt/zammad/storage
|