Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7b1c2d0977 | |||
| 5390ef62e9 | |||
| a1c2266436 |
+2
-2
@@ -1,9 +1,9 @@
|
|||||||
# You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables
|
# You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables
|
||||||
|
|
||||||
# The location where your uploaded files are stored
|
# The location where your uploaded files are stored
|
||||||
UPLOAD_LOCATION=/mnt/storage/appdata/immich/library
|
UPLOAD_LOCATION=/var/lib/immich/data
|
||||||
# The location where your database files are stored
|
# The location where your database files are stored
|
||||||
DB_DATA_LOCATION=/mnt/storage/appdata/immich/postgres
|
DB_DATA_LOCATION=/var/lib/immich/db
|
||||||
|
|
||||||
# To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
|
# To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
|
||||||
TZ=America/New_York
|
TZ=America/New_York
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ services:
|
|||||||
restart: always
|
restart: always
|
||||||
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
|
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/storage/appdata/nextcloud/mysql:/var/lib/mysql
|
- /var/lib/nextcloud/db:/var/lib/mysql
|
||||||
networks:
|
networks:
|
||||||
- default
|
- default
|
||||||
environment:
|
environment:
|
||||||
@@ -21,7 +21,7 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- 8080:80
|
- 8080:80
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/storage/appdata/nextcloud/www/html:/var/www/html
|
- /var/lib/nextcloud/data/www/html:/var/www/html
|
||||||
networks:
|
networks:
|
||||||
- default
|
- default
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
+6
-23
@@ -1,33 +1,16 @@
|
|||||||
services:
|
services:
|
||||||
portainer:
|
portainer:
|
||||||
image: portainer/portainer:latest
|
image: portainer/portainer-ce:lts
|
||||||
container_name: portainer
|
container_name: portainer
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
security_opt:
|
|
||||||
- no-new-privileges:true
|
|
||||||
networks:
|
|
||||||
- proxy
|
|
||||||
volumes:
|
volumes:
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
- /var/lib/portainer:/data
|
- /var/lib/portainer:/data
|
||||||
ports:
|
ports:
|
||||||
- 9000:9000
|
- 9443:9443
|
||||||
labels:
|
- 8000:8000
|
||||||
- "traefik.enable=false"
|
|
||||||
- "traefik.http.routers.portainer.entrypoints=http"
|
|
||||||
- "traefik.http.routers.portainer.rule=Host(`portainer.objectbrokers.com`)"
|
|
||||||
- "traefik.http.middlewares.portainer-https-redirect.redirectscheme.scheme=https"
|
|
||||||
- "traefik.http.routers.portainer.middlewares=portainer-https-redirect"
|
|
||||||
- "traefik.http.routers.portainer-secure.entrypoints=https"
|
|
||||||
- "traefik.http.routers.portainer-secure.rule=Host(`portainer.objectbrokers.com`)"
|
|
||||||
- "traefik.http.routers.portainer-secure.tls=true"
|
|
||||||
- "traefik.http.routers.portainer-secure.tls.certresolver=http"
|
|
||||||
- "traefik.http.routers.portainer-secure.service=portainer"
|
|
||||||
- "traefik.http.services.portainer.loadbalancer.server.port=9000"
|
|
||||||
- "traefik.docker.network=proxy"
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
proxy:
|
default:
|
||||||
external: true
|
name: portainer_network
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user