Update de la conf selfHost,
+ prune + DAV - vikunja - glasskeep
This commit is contained in:
parent
65f30289be
commit
573bbe298a
1 changed files with 56 additions and 53 deletions
|
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
services:
|
||||
|
||||
foundryvtt:
|
||||
image: felddy/foundryvtt:release
|
||||
environment:
|
||||
|
|
@ -145,7 +144,7 @@ services:
|
|||
restart: unless-stopped
|
||||
|
||||
watchtower:
|
||||
image: containrrr/watchtower
|
||||
image: nickfedor/watchtower:latest
|
||||
container_name: watchtower
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
|
|
@ -164,10 +163,11 @@ services:
|
|||
- path: .env
|
||||
required: true
|
||||
ports:
|
||||
- '2283:2283'
|
||||
- "2283:2283"
|
||||
depends_on:
|
||||
- redis
|
||||
- database
|
||||
- immich-machine-learning
|
||||
restart: always
|
||||
healthcheck:
|
||||
disable: false
|
||||
|
|
@ -182,6 +182,7 @@ services:
|
|||
# service: cpu # set to one of [armnn, cuda, rocm, openvino, openvino-wsl, rknn] for accelerated inference - use the `-wsl` version for WSL2 where applicable
|
||||
volumes:
|
||||
- model-cache:/cache
|
||||
environment: ENABLE_FACE_RECOGNITION=true
|
||||
env_file:
|
||||
- path: .env
|
||||
required: true
|
||||
|
|
@ -206,7 +207,7 @@ services:
|
|||
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
||||
POSTGRES_USER: ${DB_USERNAME}
|
||||
POSTGRES_DB: ${DB_DATABASE_NAME}
|
||||
POSTGRES_INITDB_ARGS: '--data-checksums'
|
||||
POSTGRES_INITDB_ARGS: "--data-checksums"
|
||||
# Uncomment the DB_STORAGE_TYPE: 'HDD' var if your database isn't stored on SSDs
|
||||
# DB_STORAGE_TYPE: 'HDD'
|
||||
volumes:
|
||||
|
|
@ -228,8 +229,8 @@ services:
|
|||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
ports:
|
||||
- '3000:3000'
|
||||
- '222:22'
|
||||
- "3000:3000"
|
||||
- "222:22"
|
||||
|
||||
nginx-proxy-manager:
|
||||
image: jc21/nginx-proxy-manager:latest
|
||||
|
|
@ -256,40 +257,42 @@ services:
|
|||
- 8082:80
|
||||
restart: unless-stopped
|
||||
|
||||
vikunja:
|
||||
image: vikunja/vikunja
|
||||
container_name: vikunja
|
||||
environment:
|
||||
VIKUNJA_SERVICE_JWTSECRET: ${VIKUNJA_SERVICE_JWTSECRET}
|
||||
VIKUNJA_SERVICE_PUBLICURL: https://notes.griffix.hopto.org/
|
||||
VIKUNJA_DATABASE_PATH: /db/vikunja.db
|
||||
env_file:
|
||||
- path: .env
|
||||
required: true
|
||||
ports:
|
||||
- 3456:3456
|
||||
volumes:
|
||||
- /config/vikunja/files:/app/vikunja/files
|
||||
- /config/vikunja/db:/db
|
||||
vaultwarden:
|
||||
image: vaultwarden/server:latest
|
||||
container_name: vaultwarden
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
DOMAIN: "https://griffix.hopto.org"
|
||||
volumes:
|
||||
- ./vw-data/:/data/
|
||||
ports:
|
||||
- 127.0.0.1:8000:80
|
||||
|
||||
glass-keep:
|
||||
image: nikunjsingh/glass-keep:latest
|
||||
container_name: glass-keep
|
||||
restart: unless-stopped
|
||||
env_file:
|
||||
- path: .env
|
||||
required: true
|
||||
environment:
|
||||
NODE_ENV: production
|
||||
API_PORT: "8080"
|
||||
JWT_SECRET: ${VIKUNJA_SERVICE_JWTSECRET}
|
||||
DB_FILE: /app/data/notes.db
|
||||
ADMIN_EMAILS: griffix
|
||||
baikal:
|
||||
image: ckulka/baikal:nginx
|
||||
restart: always
|
||||
ports:
|
||||
- "8380:8080"
|
||||
- "8010:80"
|
||||
volumes:
|
||||
- /config/glass-keep:/app/data
|
||||
- config:/var/www/baikal/config
|
||||
- data:/var/www/baikal/Specific
|
||||
|
||||
prunemate:
|
||||
image: anoniemerd/prunemate:latest # Supports amd64 and arm64
|
||||
container_name: prunemate
|
||||
ports:
|
||||
- "7676:8080"
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
- ./logs:/var/log
|
||||
- ./config:/config
|
||||
environment:
|
||||
- PRUNEMATE_TZ=Europe/Paris # Change this to your desired timezone
|
||||
- PRUNEMATE_TIME_24H=true #false for 12-Hour format (AM/PM)
|
||||
# Optional: Enable authentication (generate hash with: docker run --rm anoniemerd/prunemate python prunemate.py --gen-hash "password")
|
||||
# - PRUNEMATE_AUTH_USER=admin
|
||||
# - PRUNEMATE_AUTH_PASSWORD_HASH=your_base64_encoded_hash_here
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
forgejo:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue