Compare commits
6 Commits
010410774b
...
22730685f1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
22730685f1 | ||
|
|
8737b37369 | ||
|
|
a4220c73f6 | ||
|
|
85b62225fa | ||
|
|
43292b0a10 | ||
|
|
a55fc818c5 |
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
@@ -14,4 +13,7 @@ services:
|
|||||||
- "192.168.0.111:8123:8123"
|
- "192.168.0.111:8123:8123"
|
||||||
privileged: true
|
privileged: true
|
||||||
environment:
|
environment:
|
||||||
- TZ=Europe/Berlin
|
- TZ=Europe/Berlin
|
||||||
|
labels:
|
||||||
|
- "com.centurylinklabs.watchtower.monitor-only=true"
|
||||||
|
restart: unless-stopped
|
||||||
@@ -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
|
||||||
@@ -30,15 +30,16 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- "2342:2342"
|
- "2342:2342"
|
||||||
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
|
||||||
@@ -111,4 +112,4 @@ volumes:
|
|||||||
driver_opts:
|
driver_opts:
|
||||||
type: nfs
|
type: nfs
|
||||||
o: addr=${NFS_SERVER},rw
|
o: addr=${NFS_SERVER},rw
|
||||||
device: ":${cache}"
|
device: ":${cache}"
|
||||||
@@ -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:
|
||||||
|
|||||||
@@ -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
|
||||||
@@ -15,4 +15,4 @@ services:
|
|||||||
- 8443:8443
|
- 8443:8443
|
||||||
volumes:
|
volumes:
|
||||||
- /opt/unifi/config:/config
|
- /opt/unifi/config:/config
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|||||||
Reference in New Issue
Block a user