Compare commits

...

6 Commits

Author SHA1 Message Date
borgal
22730685f1 Unifiy MemLimit entfernt 2022-12-01 09:08:44 +01:00
borgal
8737b37369 PiGallery2 autoStart der DB hinzugefügt 2022-12-01 09:07:58 +01:00
borgal
a4220c73f6 Photoprism angepasst 2022-12-01 09:06:08 +01:00
borgal
85b62225fa Adguard Ausnahmen hinzugefügt 2022-12-01 09:05:37 +01:00
borgal
43292b0a10 Node-Red reset nach Test 2022-12-01 09:04:25 +01:00
borgal
a55fc818c5 HA auto-Watchtower deaktiviert 2022-12-01 09:03:24 +01:00
6 changed files with 21 additions and 12 deletions

View File

@@ -195,6 +195,9 @@ user_rules:
- /^r[0-9]{1,2}-*sn-[a-z0-9]*-[0-9a-z]{4}.googlevideo.com/ - /^r[0-9]{1,2}-*sn-[a-z0-9]*-[0-9a-z]{4}.googlevideo.com/
- /^rr[0-9]-*sn-[a-z0-9]*-[0-9a-z]{4}\.googlevideo\.com/ - /^rr[0-9]-*sn-[a-z0-9]*-[0-9a-z]{4}\.googlevideo\.com/
- '@@||ad.doubleclick.net^$important' - '@@||ad.doubleclick.net^$important'
- '@@||app-measurement.com^$important'
- '@@||www.googletagmanager.com^$important'
- '@@||www.google-analytics.com^$important'
- "" - ""
dhcp: dhcp:
enabled: false enabled: false

View File

@@ -2,7 +2,6 @@ version: '3'
services: services:
homeassistant: homeassistant:
container_name: homeassistant container_name: homeassistant
restart: always
image: homeassistant/home-assistant image: homeassistant/home-assistant
volumes: volumes:
- /opt/homeassistant/config:/config - /opt/homeassistant/config:/config
@@ -15,3 +14,6 @@ services:
privileged: true privileged: true
environment: environment:
- TZ=Europe/Berlin - TZ=Europe/Berlin
labels:
- "com.centurylinklabs.watchtower.monitor-only=true"
restart: unless-stopped

View File

@@ -11,7 +11,7 @@ services:
- ./data:/data - ./data:/data
environment: environment:
- TZ=Europe/Berlin - TZ=Europe/Berlin
# - PGID=1000 #- PGID=1000
# - PUID=1000 #- PUID=1000
restart: always restart: always
# network_mode: host #network_mode: host

View File

@@ -32,13 +32,14 @@ services:
environment: environment:
PHOTOPRISM_ADMIN_PASSWORD: "${ADMIN_PASSWORD}" # INITIAL PASSWORD FOR "admin" USER, MINIMUM 8 CHARACTERS PHOTOPRISM_ADMIN_PASSWORD: "${ADMIN_PASSWORD}" # INITIAL PASSWORD FOR "admin" USER, MINIMUM 8 CHARACTERS
PHOTOPRISM_AUTH_MODE: "password" # authentication mode (public, password) PHOTOPRISM_AUTH_MODE: "password" # authentication mode (public, password)
PHOTOPRISM_SITE_URL: "http://docker:2342" # public server URL incl http:// or https:// and /path, :port is optional PHOTOPRISM_SITE_URL: "https://photo.borgal.de" # public server URL incl http:// or https:// and /path, :port is optional
PHOTOPRISM_AUTO_INDEX: 60
PHOTOPRISM_ORIGINALS_LIMIT: 5000 # file size limit for originals in MB (increase for high-res video) PHOTOPRISM_ORIGINALS_LIMIT: 5000 # file size limit for originals in MB (increase for high-res video)
PHOTOPRISM_HTTP_COMPRESSION: "gzip" # improves transfer speed and bandwidth utilization (none or gzip) PHOTOPRISM_HTTP_COMPRESSION: "gzip" # improves transfer speed and bandwidth utilization (none or gzip)
PHOTOPRISM_LOG_LEVEL: "info" # log level: trace, debug, info, warning, error, fatal, or panic PHOTOPRISM_LOG_LEVEL: "info" # log level: trace, debug, info, warning, error, fatal, or panic
PHOTOPRISM_READONLY: "false" # do not modify originals directory (reduced functionality) PHOTOPRISM_READONLY: "false" # do not modify originals directory (reduced functionality)
PHOTOPRISM_EXPERIMENTAL: "false" # enables experimental features PHOTOPRISM_EXPERIMENTAL: "false" # enables experimental features
PHOTOPRISM_DISABLE_CHOWN: "false" # disables updating storage permissions via chmod and chown on startup PHOTOPRISM_DISABLE_CHOWN: "yes" # disables updating storage permissions via chmod and chown on startup
PHOTOPRISM_DISABLE_WEBDAV: "false" # disables built-in WebDAV server PHOTOPRISM_DISABLE_WEBDAV: "false" # disables built-in WebDAV server
PHOTOPRISM_DISABLE_SETTINGS: "false" # disables settings UI and API PHOTOPRISM_DISABLE_SETTINGS: "false" # disables settings UI and API
PHOTOPRISM_DISABLE_TENSORFLOW: "false" # disables all features depending on TensorFlow PHOTOPRISM_DISABLE_TENSORFLOW: "false" # disables all features depending on TensorFlow

View File

@@ -5,11 +5,13 @@ services:
image: mariadb image: mariadb
volumes: volumes:
- ./db-data:/var/lib/mysql - ./db-data:/var/lib/mysql
restart: unless-stopped
environment: environment:
- MYSQL_ROOT_PASSWORD=${DB_ROOT_PASSWORD} - MYSQL_ROOT_PASSWORD=${DB_ROOT_PASSWORD}
- MYSQL_USER=pigallery2 - MYSQL_USER=pigallery2
- MYSQL_PASSWORD=${DB_PASSWORD} - MYSQL_PASSWORD=${DB_PASSWORD}
- MYSQL_DATABASE=pigallery2 - MYSQL_DATABASE=pigallery2
- TZ=Europe/Berlin
pigallery2: pigallery2:
image: bpatrik/pigallery2:latest image: bpatrik/pigallery2:latest
@@ -17,6 +19,7 @@ services:
container_name: pigallery2 container_name: pigallery2
environment: environment:
- NODE_ENV=production - NODE_ENV=production
- TZ=Europe/Berlin
volumes: volumes:
- "./db-data:/app/data/db" - "./db-data:/app/data/db"
- "Photos:/app/data/images:ro" - "Photos:/app/data/images:ro"
@@ -24,7 +27,7 @@ services:
- "./tmp:/app/data/tmp" - "./tmp:/app/data/tmp"
ports: ports:
- 8090:80 - 8090:80
restart: always restart: unless-stopped
volumes: volumes:
Photos: Photos:

View File

@@ -7,7 +7,7 @@ services:
- TZ=Europe/Berlin - TZ=Europe/Berlin
- PUID=0 - PUID=0
- PGID=0 - PGID=0
- MEM_LIMIT=1024M # - MEM_LIMIT=2048M
ports: ports:
- 3478:3478/udp - 3478:3478/udp
- 10001:10001/udp - 10001:10001/udp