paste bin

This commit is contained in:
poslop
2025-03-14 21:13:45 -05:00
parent 3515d1f2d2
commit dc98c7080a
6 changed files with 65 additions and 12 deletions

View File

@@ -13,7 +13,6 @@ services:
- caddy_set:/etc/caddy - caddy_set:/etc/caddy
- caddy_srv:/srv - caddy_srv:/srv
- caddy_data:/data - caddy_data:/data
- piped-proxy:/var/run/ytproxy
- caddy_config:/config - caddy_config:/config
environment: environment:
- CLOUDFLARE_API_TOKEN=${CF_CADDY_KEY} - CLOUDFLARE_API_TOKEN=${CF_CADDY_KEY}
@@ -40,3 +39,5 @@ volumes:
caddy_set: caddy_set:
name: caddy_set name: caddy_set
external: true external: true
caddy_html:
external: true

View File

@@ -10,5 +10,5 @@ services:
security_opt: [no-new-privileges:true] security_opt: [no-new-privileges:true]
environment: environment:
- CLOUDFLARE_API_TOKEN=${CFKEY} - CLOUDFLARE_API_TOKEN=${CFKEY}
- DOMAINS=archfox.org, jelly.archfox.org, searxng.archfox.org, bookstack.archfox.org, vault.archfox.org, git.archfox.org, nextcloud.archfox.org, aria.archfox.org, wings.archfox.org, panel.archfox.org, omada.archfox.org, mc.archfox.org - DOMAINS=archfox.org, jelly.archfox.org, searxng.archfox.org, bookstack.archfox.org, vault.archfox.org, git.archfox.org, nextcloud.archfox.org, aria.archfox.org, wings.archfox.org, panel.archfox.org, omada.archfox.org, mc.archfox.org, ai.archfox.org, p.archfox.org
- PROXIED=false - PROXIED=false

View File

@@ -5,11 +5,17 @@ services:
restart: unless-stopped restart: unless-stopped
environment: environment:
- OLLAMA_BASE_URL=http://poslop-w:11434 - OLLAMA_BASE_URL=http://poslop-w:11434
ports:
- 3636:8080
volumes: volumes:
- open-webui:/app/backend/data - open-webui:/app/backend/data
networks:
- caddy
volumes: volumes:
open-webui: open-webui:
external: true external: true
networks:
caddy:
name: caddy
external: true

View File

@@ -0,0 +1,45 @@
services:
pastedb:
container_name: pastedb
image: mariadb:10.11
volumes:
- pastedb:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: pastefy
MYSQL_DATABASE: pastefy
MYSQL_USER: pastefy
MYSQL_PASSWORD: pastefy
networks:
- pastefy
pastefy:
container_name: pastefy
depends_on:
- pastedb
image: interaapps/pastefy:latest
environment:
HTTP_SERVER_PORT: 80
HTTP_SERVER_CORS: "*"
DATABASE_DRIVER: mysql
DATABASE_NAME: pastefy
DATABASE_USER: pastefy
DATABASE_PASSWORD: pastefy
DATABASE_HOST: pastedb
DATABASE_PORT: 3306
SERVER_NAME: "https://p.archfox.org"
networks:
- caddy
- pastefy
volumes:
pastedb:
external: true
networks:
pastefy:
name: pastefy
caddy:
name: caddy
external: true

View File

@@ -8,14 +8,16 @@ services:
- PGID=1000 - PGID=1000
- TZ=Etc/UTC - TZ=Etc/UTC
- WEBUI_PORT=8181 - WEBUI_PORT=8181
network_mode: "service:gluetun" #network_mode: "service:gluetun"
ports:
- 8181:8181
volumes: volumes:
- qbittorrent:/config - qbittorrent:/config
- /mnt/nextcloud:/mnt/files - /mnt/nextcloud:/mnt/files
restart: unless-stopped restart: unless-stopped
depends_on: # depends_on:
gluetun: # gluetun:
condition: service_healthy # condition: service_healthy
gluetun: gluetun:
@@ -27,15 +29,14 @@ services:
- VPN_SERVICE_PROVIDER=mullvad - VPN_SERVICE_PROVIDER=mullvad
- VPN_TYPE=wireguard - VPN_TYPE=wireguard
- WIREGUARD_PRIVATE_KEY=${MULLKEY} - WIREGUARD_PRIVATE_KEY=${MULLKEY}
- WIREGUARD_ADDRESSES=10.73.197.103/32 - WIREGUARD_ADDRESSES=68.235.46.126/32
- DNS_ADDRESS=10.64.0.1 - DNS_ADDRESS=10.64.0.1
- SERVER_CITIES=Chicago IL
volumes: volumes:
- gluetun:/gluetun - gluetun:/gluetun
devices: devices:
- /dev/net/tun:/dev/net/tun - /dev/net/tun:/dev/net/tun
ports: ports:
- 8181:8181 # - 8181:8181
- 6881:6881 - 6881:6881
- 6881:6881/udp - 6881:6881/udp
restart: unless-stopped restart: unless-stopped

View File

@@ -26,8 +26,8 @@ services=(
"Tools/qbit.yml" "Tools/qbit.yml"
"Tools/open-webui.yml" "Tools/open-webui.yml"
"Tools/watchtower.yml" "Tools/watchtower.yml"
"Tools/pastefy.yml"
"pterodactyl/docker-compose.yml" "pterodactyl/docker-compose.yml"
"Piped-Docker/docker-compose.yml"
) )
# Start building the docker compose command with multiple -f flags # Start building the docker compose command with multiple -f flags