Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 01d5afe81c | |||
| 7feb968c74 | |||
| 3ccc4d2498 | |||
| 112c8424ef | |||
| d0ecaf2fb4 |
@@ -6,6 +6,7 @@
|
|||||||
| --- | --- |
|
| --- | --- |
|
||||||
| actual_server | docker.io/actualbudget/actual-server:latest |
|
| actual_server | docker.io/actualbudget/actual-server:latest |
|
||||||
| adguard | adguard/adguardhome:latest |
|
| adguard | adguard/adguardhome:latest |
|
||||||
|
| archivebox | archivebox/archivebox:latest |
|
||||||
| audiobookshelf | ghcr.io/advplyr/audiobookshelf:latest |
|
| audiobookshelf | ghcr.io/advplyr/audiobookshelf:latest |
|
||||||
| authelia | authelia/authelia:master |
|
| authelia | authelia/authelia:master |
|
||||||
| authelia-pg | postgres:16-alpine |
|
| authelia-pg | postgres:16-alpine |
|
||||||
@@ -37,6 +38,7 @@
|
|||||||
| dbgate | dbgate/dbgate:alpine |
|
| dbgate | dbgate/dbgate:alpine |
|
||||||
| delugevpn | ghcr.io/binhex/arch-delugevpn:latest |
|
| delugevpn | ghcr.io/binhex/arch-delugevpn:latest |
|
||||||
| docker-socket-proxy | ghcr.io/tecnativa/docker-socket-proxy:latest |
|
| docker-socket-proxy | ghcr.io/tecnativa/docker-socket-proxy:latest |
|
||||||
|
| docker-volume-backup | offen/docker-volume-backup:v2 |
|
||||||
| docuseal | docuseal/docuseal:latest |
|
| docuseal | docuseal/docuseal:latest |
|
||||||
| duplicati | lscr.io/linuxserver/duplicati:latest |
|
| duplicati | lscr.io/linuxserver/duplicati:latest |
|
||||||
| fastenhealth | ghcr.io/fastenhealth/fasten-onprem:main |
|
| fastenhealth | ghcr.io/fastenhealth/fasten-onprem:main |
|
||||||
|
|||||||
@@ -273,7 +273,7 @@ SERPAPI_API_KEY=
|
|||||||
|
|
||||||
# Stable Diffusion
|
# Stable Diffusion
|
||||||
#-----------------
|
#-----------------
|
||||||
# SD_WEBUI_URL=http://host.docker.internal:7860
|
SD_WEBUI_URL=http://stable-diffusion-webui:7860
|
||||||
|
|
||||||
# Tavily
|
# Tavily
|
||||||
#-----------------
|
#-----------------
|
||||||
|
|||||||
@@ -30,6 +30,9 @@ message_db:
|
|||||||
smtp_server:
|
smtp_server:
|
||||||
default_port: 25
|
default_port: 25
|
||||||
default_bind_address: "::"
|
default_bind_address: "::"
|
||||||
|
tls_enabled: true
|
||||||
|
tls_certificate_path: /config/certs/fullchain.pem
|
||||||
|
tls_private_key_path: /config/certs/privkey.pem
|
||||||
|
|
||||||
dns:
|
dns:
|
||||||
# Specify the DNS records that you have configured. Refer to the documentation at
|
# Specify the DNS records that you have configured. Refer to the documentation at
|
||||||
|
|||||||
+32
-5
@@ -3937,11 +3937,8 @@ services:
|
|||||||
- 25:25
|
- 25:25
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- source: ${DOCKER_VOLUME_CONFIG}/postal
|
- ${DOCKER_VOLUME_CONFIG}/postal:/config
|
||||||
target: /config
|
- ${DOCKER_VOLUME_CONFIG}/swag/etc/letsencrypt/live/trez.wtf:/config/certs
|
||||||
type: bind
|
|
||||||
bind:
|
|
||||||
create_host_path: true
|
|
||||||
postal-web:
|
postal-web:
|
||||||
command: postal web-server
|
command: postal web-server
|
||||||
container_name: postal-web
|
container_name: postal-web
|
||||||
@@ -4865,6 +4862,36 @@ services:
|
|||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- ${DOCKER_VOLUME_CONFIG}/spotisub:/home/user/spotisub/cache
|
- ${DOCKER_VOLUME_CONFIG}/spotisub:/home/user/spotisub/cache
|
||||||
|
stable-diffusion-download:
|
||||||
|
container_name: stable-diffusion-download
|
||||||
|
image: git.trez.wtf/trez.one/stable-diffusion-download:v9.0.0
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_VOLUME_CONFIG}/stable-diffusion-webui/data:/data
|
||||||
|
stable-diffusion-webui:
|
||||||
|
container_name: stable-diffusion-webui
|
||||||
|
image: git.trez.wtf/trez.one/stable-diffusion-ui:v9.0.0
|
||||||
|
environment:
|
||||||
|
- CLI_ARGS=--allow-code --medvram --xformers --enable-insecure-extension-access --api
|
||||||
|
labels:
|
||||||
|
homepage.name: Stable-Diffusion WebUI
|
||||||
|
homepage.group: Personal Services
|
||||||
|
homepage.description: Deep learning, text-to-image model
|
||||||
|
homepage.href: https://sd.${MY_TLD}
|
||||||
|
homepage.icon: /icons/stable-diffusion.png
|
||||||
|
swag: enable
|
||||||
|
swag_port: 7860
|
||||||
|
swag_proto: http
|
||||||
|
swag_url: sd.${MY_TLD}
|
||||||
|
swag.uptime-kuma.enabled: true
|
||||||
|
swag.uptime-kuma.monitor.url: https://sd.${MY_TLD}
|
||||||
|
ports:
|
||||||
|
- 7860:7860
|
||||||
|
restart: unless-stopped
|
||||||
|
tty: true
|
||||||
|
volumes:
|
||||||
|
- ${DOCKER_VOLUME_CONFIG}/stable-diffusion-webui/data:/data
|
||||||
|
- ${DOCKER_VOLUME_CONFIG}/stable-diffusion-webui/output:/output
|
||||||
swag:
|
swag:
|
||||||
cap_add:
|
cap_add:
|
||||||
- NET_ADMIN
|
- NET_ADMIN
|
||||||
|
|||||||
Reference in New Issue
Block a user