Compare commits
No commits in common. "a4bd554ead1a1867876f5d5cbec61137625d6807" and "b311bf08783220069b772338241684cccd02d9a2" have entirely different histories.
a4bd554ead
...
b311bf0878
@ -1,76 +0,0 @@
|
|||||||
services:
|
|
||||||
gluetun:
|
|
||||||
image: qmcgaw/gluetun
|
|
||||||
container_name: gluetun
|
|
||||||
# line above must be uncommented to allow external containers to connect.
|
|
||||||
# See https://github.com/qdm12/gluetun-wiki/blob/main/setup/connect-a-container-to-gluetun.md#external-container-to-gluetun
|
|
||||||
cap_add:
|
|
||||||
- NET_ADMIN
|
|
||||||
devices:
|
|
||||||
- /dev/net/tun:/dev/net/tun
|
|
||||||
ports:
|
|
||||||
- 6881:6881
|
|
||||||
- 6881:6881/udp
|
|
||||||
- 8085:8085 # qbittorrent
|
|
||||||
- 8989:8989 # Sonarr
|
|
||||||
- 9696:9696 # Prowlarr
|
|
||||||
volumes:
|
|
||||||
- /home/ubuntu/docker/arr-stack:/gluetun
|
|
||||||
environment:
|
|
||||||
# See https://github.com/qdm12/gluetun-wiki/tree/main/setup#setup
|
|
||||||
- VPN_SERVICE_PROVIDER=nordvpn
|
|
||||||
- VPN_TYPE=wireguard
|
|
||||||
# OpenVPN:
|
|
||||||
# - OPENVPN_USER=
|
|
||||||
# - OPENVPN_PASSWORD=
|
|
||||||
# Wireguard:
|
|
||||||
- WIREGUARD_PRIVATE_KEY=<YOUR_PRIVATE_KEY> # See https://github.com/qdm12/gluetun-wiki/blob/main/setup/providers/nordvpn.md#obtain-your-wireguard-private-key
|
|
||||||
- WIREGUARD_ADDRESSES=10.5.0.2/32
|
|
||||||
# Timezone for accurate log times
|
|
||||||
- TZ=Europe/London
|
|
||||||
# Server list updater
|
|
||||||
# See https://github.com/qdm12/gluetun-wiki/blob/main/setup/servers.md#update-the-vpn-servers-list
|
|
||||||
- UPDATER_PERIOD=24h
|
|
||||||
|
|
||||||
qbittorrent:
|
|
||||||
image: lscr.io/linuxserver/qbittorrent
|
|
||||||
container_name: qbittorrent
|
|
||||||
network_mode: "service:gluetun"
|
|
||||||
environment:
|
|
||||||
- PUID=1000
|
|
||||||
- PGID=1000
|
|
||||||
- TZ=Europe/London
|
|
||||||
- WEBUI_PORT=8085
|
|
||||||
volumes:
|
|
||||||
- /home/ubuntu/docker/arr-stack/qbittorrent:/config
|
|
||||||
- /home/ubuntu/docker/arr-stack/qbittorrent/downloads:/downloads
|
|
||||||
depends_on:
|
|
||||||
- gluetun
|
|
||||||
restart: always
|
|
||||||
|
|
||||||
sonarr:
|
|
||||||
image: lscr.io/linuxserver/sonarr:latest
|
|
||||||
container_name: sonarr
|
|
||||||
network_mode: "service:gluetun"
|
|
||||||
environment:
|
|
||||||
- PUID=1000
|
|
||||||
- PGID=1000
|
|
||||||
- TZ=Etc/UTC
|
|
||||||
volumes:
|
|
||||||
- /home/ubuntu/docker/arr-stack/sonarr/data:/config
|
|
||||||
- /home/ubuntu/docker/arr-stack/sonarr/tvseries:/tv #optional
|
|
||||||
- /home/ubuntu/docker/arr-stack/sonarr/downloadclient-downloads:/downloads #optional
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
prowlarr:
|
|
||||||
image: lscr.io/linuxserver/prowlarr:latest
|
|
||||||
container_name: prowlarr
|
|
||||||
network_mode: "service:gluetun"
|
|
||||||
environment:
|
|
||||||
- PUID=1000
|
|
||||||
- PGID=1000
|
|
||||||
- TZ=Etc/UTC
|
|
||||||
volumes:
|
|
||||||
- /home/ubuntu/docker/arr-stack/prowlarr/data:/config
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
@ -1,84 +0,0 @@
|
|||||||
services:
|
|
||||||
postgresql:
|
|
||||||
image: docker.io/library/postgres:12-alpine
|
|
||||||
restart: unless-stopped
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD-SHELL", "pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}"]
|
|
||||||
start_period: 20s
|
|
||||||
interval: 30s
|
|
||||||
retries: 5
|
|
||||||
timeout: 5s
|
|
||||||
volumes:
|
|
||||||
- database:/var/lib/postgresql/data
|
|
||||||
environment:
|
|
||||||
POSTGRES_PASSWORD: ${PG_PASS:?database password required}
|
|
||||||
POSTGRES_USER: ${PG_USER:-authentik}
|
|
||||||
POSTGRES_DB: ${PG_DB:-authentik}
|
|
||||||
env_file:
|
|
||||||
- .env
|
|
||||||
redis:
|
|
||||||
image: docker.io/library/redis:alpine
|
|
||||||
command: --save 60 1 --loglevel warning
|
|
||||||
restart: unless-stopped
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD-SHELL", "redis-cli ping | grep PONG"]
|
|
||||||
start_period: 20s
|
|
||||||
interval: 30s
|
|
||||||
retries: 5
|
|
||||||
timeout: 3s
|
|
||||||
volumes:
|
|
||||||
- redis:/data
|
|
||||||
server:
|
|
||||||
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2023.10.6}
|
|
||||||
restart: unless-stopped
|
|
||||||
command: server
|
|
||||||
environment:
|
|
||||||
AUTHENTIK_REDIS__HOST: redis
|
|
||||||
AUTHENTIK_POSTGRESQL__HOST: postgresql
|
|
||||||
AUTHENTIK_POSTGRESQL__USER: ${PG_USER:-authentik}
|
|
||||||
AUTHENTIK_POSTGRESQL__NAME: ${PG_DB:-authentik}
|
|
||||||
AUTHENTIK_POSTGRESQL__PASSWORD: ${PG_PASS}
|
|
||||||
volumes:
|
|
||||||
- ./media:/media
|
|
||||||
- ./custom-templates:/templates
|
|
||||||
env_file:
|
|
||||||
- .env
|
|
||||||
ports:
|
|
||||||
- "${COMPOSE_PORT_HTTP:-9000}:9000"
|
|
||||||
- "${COMPOSE_PORT_HTTPS:-9443}:9443"
|
|
||||||
depends_on:
|
|
||||||
- postgresql
|
|
||||||
- redis
|
|
||||||
worker:
|
|
||||||
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2023.10.6}
|
|
||||||
restart: unless-stopped
|
|
||||||
command: worker
|
|
||||||
environment:
|
|
||||||
AUTHENTIK_REDIS__HOST: redis
|
|
||||||
AUTHENTIK_POSTGRESQL__HOST: postgresql
|
|
||||||
AUTHENTIK_POSTGRESQL__USER: ${PG_USER:-authentik}
|
|
||||||
AUTHENTIK_POSTGRESQL__NAME: ${PG_DB:-authentik}
|
|
||||||
AUTHENTIK_POSTGRESQL__PASSWORD: ${PG_PASS}
|
|
||||||
# `user: root` and the docker socket volume are optional.
|
|
||||||
# See more for the docker socket integration here:
|
|
||||||
# https://goauthentik.io/docs/outposts/integrations/docker
|
|
||||||
# Removing `user: root` also prevents the worker from fixing the permissions
|
|
||||||
# on the mounted folders, so when removing this make sure the folders have the correct UID/GID
|
|
||||||
# (1000:1000 by default)
|
|
||||||
user: root
|
|
||||||
volumes:
|
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
|
||||||
- ./media:/media
|
|
||||||
- ./certs:/certs
|
|
||||||
- ./custom-templates:/templates
|
|
||||||
env_file:
|
|
||||||
- .env
|
|
||||||
depends_on:
|
|
||||||
- postgresql
|
|
||||||
- redis
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
database:
|
|
||||||
driver: local
|
|
||||||
redis:
|
|
||||||
driver: local
|
|
@ -1,22 +0,0 @@
|
|||||||
services:
|
|
||||||
nextcloud-aio-mastercontainer:
|
|
||||||
image: nextcloud/all-in-one:latest
|
|
||||||
init: true
|
|
||||||
restart: always
|
|
||||||
container_name: nextcloud-aio-mastercontainer
|
|
||||||
volumes:
|
|
||||||
- nextcloud_aio_mastercontainer:/mnt/docker-aio-config
|
|
||||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
||||||
ports:
|
|
||||||
- 8090:8080
|
|
||||||
environment:
|
|
||||||
- APACHE_PORT=11000
|
|
||||||
- APACHE_IP_BINDING=0.0.0.0
|
|
||||||
- NEXTCLOUD_DATADIR=/data/cloud/data
|
|
||||||
- NEXTCLOUD_MEMORY_LIMIT=1024M
|
|
||||||
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
nextcloud_aio_mastercontainer:
|
|
||||||
name: nextcloud_aio_mastercontainer
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
|||||||
services:
|
|
||||||
endlessh:
|
|
||||||
image: lscr.io/linuxserver/endlessh:latest
|
|
||||||
container_name: endlessh
|
|
||||||
environment:
|
|
||||||
- PUID=1000
|
|
||||||
- PGID=1000
|
|
||||||
- TZ=Etc/UTC
|
|
||||||
- MSDELAY=10000 #optional
|
|
||||||
- MAXLINES=32 #optional
|
|
||||||
- MAXCLIENTS=4096 #optional
|
|
||||||
- LOGFILE=true #optional
|
|
||||||
- BINDFAMILY= #optional
|
|
||||||
volumes:
|
|
||||||
- /home/fabian/endlessh/config:/config #optional
|
|
||||||
ports:
|
|
||||||
- 22:2222
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
@ -1,53 +0,0 @@
|
|||||||
networks:
|
|
||||||
gitea:
|
|
||||||
external: false
|
|
||||||
|
|
||||||
services:
|
|
||||||
server:
|
|
||||||
image: gitea/gitea:latest
|
|
||||||
container_name: gitea
|
|
||||||
environment:
|
|
||||||
- USER_UID=1001
|
|
||||||
- USER_GID=1001
|
|
||||||
- GITEA__database__DB_TYPE=postgres
|
|
||||||
- GITEA__database__HOST=db:5432
|
|
||||||
- GITEA__database__NAME=gitea
|
|
||||||
- GITEA__database__USER=gitea
|
|
||||||
- GITEA__database__PASSWD=Mm.S,WdRhWYE;9
|
|
||||||
restart: always
|
|
||||||
networks:
|
|
||||||
- gitea
|
|
||||||
volumes:
|
|
||||||
- /data/git/gitea:/data
|
|
||||||
- /etc/timezone:/etc/timezone:ro
|
|
||||||
- /etc/localtime:/etc/localtime:ro
|
|
||||||
- /home/git/.ssh:/data/git/.ssh
|
|
||||||
ports:
|
|
||||||
- "3010:3000"
|
|
||||||
- "222:22"
|
|
||||||
depends_on:
|
|
||||||
- db
|
|
||||||
|
|
||||||
db:
|
|
||||||
image: postgres:14
|
|
||||||
restart: always
|
|
||||||
environment:
|
|
||||||
- POSTGRES_USER=gitea
|
|
||||||
- POSTGRES_PASSWORD=Mm.S,WdRhWYE;9
|
|
||||||
- POSTGRES_DB=gitea
|
|
||||||
networks:
|
|
||||||
- gitea
|
|
||||||
volumes:
|
|
||||||
- /data/git/postgres:/var/lib/postgresql/data
|
|
||||||
|
|
||||||
runner:
|
|
||||||
image: gitea/act_runner
|
|
||||||
restart: always
|
|
||||||
depends_on:
|
|
||||||
- server
|
|
||||||
volumes:
|
|
||||||
- /data/git/act_runner:/data
|
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
|
||||||
environment:
|
|
||||||
- GITEA_INSTANCE_URL=https://git.plobos.xyz
|
|
||||||
- GITEA_RUNNER_REGISTRATION_TOKEN=hc0N7KMCNRvTUBYaw5dLZF7BSa1mUuinpBvHu4TG
|
|
@ -1,25 +0,0 @@
|
|||||||
services:
|
|
||||||
server:
|
|
||||||
image: itzg/minecraft-server
|
|
||||||
container_name: mc
|
|
||||||
environments:
|
|
||||||
- EULA=TRUE
|
|
||||||
- VERSION="1.17.1"
|
|
||||||
- TYPE=FABRIC
|
|
||||||
ports:
|
|
||||||
- 25566:25565
|
|
||||||
volumes:
|
|
||||||
- /srv/minecraft/fabric:/data
|
|
||||||
skyblock:
|
|
||||||
image: itzg/minecraft-server:java17
|
|
||||||
container_name: skyblock
|
|
||||||
environments:
|
|
||||||
- EULA=TRUE
|
|
||||||
- VERSION="1.19.2"
|
|
||||||
- TYPE=FABRIC
|
|
||||||
- MEMORY=4G
|
|
||||||
ports:
|
|
||||||
- 25567:25565
|
|
||||||
volumes:
|
|
||||||
- /srv/minecraft/skyblock:/data
|
|
||||||
|
|
@ -1,24 +0,0 @@
|
|||||||
# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/
|
|
||||||
services:
|
|
||||||
pihole:
|
|
||||||
container_name: pihole
|
|
||||||
image: pihole/pihole:latest
|
|
||||||
# For DHCP it is recommended to remove these ports and instead add: network_mode: "host"
|
|
||||||
ports:
|
|
||||||
- "53:53/tcp"
|
|
||||||
- "53:53/udp"
|
|
||||||
- "67:67/udp"
|
|
||||||
- "80:80/tcp"
|
|
||||||
environment:
|
|
||||||
TZ: 'Europe/Berlin'
|
|
||||||
WEBPASSWORD: 'fD7S9ubX535pNgrT9cVFn'
|
|
||||||
PIHOLE_DNS_: 1.1.1.1;1.0.0.1
|
|
||||||
INTERFACE: 'eth0'
|
|
||||||
# Volumes store your data between container upgrades
|
|
||||||
volumes:
|
|
||||||
- './etc-pihole:/etc/pihole'
|
|
||||||
- './etc-dnsmasq.d:/etc/dnsmasq.d'
|
|
||||||
# https://github.com/pi-hole/docker-pi-hole#note-on-capabilities
|
|
||||||
cap_add:
|
|
||||||
- NET_ADMIN
|
|
||||||
restart: unless-stopped
|
|
@ -1,35 +0,0 @@
|
|||||||
networks:
|
|
||||||
rustdesk-net:
|
|
||||||
external: false
|
|
||||||
|
|
||||||
services:
|
|
||||||
hbbs:
|
|
||||||
container_name: hbbs
|
|
||||||
ports:
|
|
||||||
- 21115:21115
|
|
||||||
- 21116:21116
|
|
||||||
- 21116:21116/udp
|
|
||||||
- 21118:21118
|
|
||||||
image: rustdesk/rustdesk-server:latest
|
|
||||||
command: hbbs -r rustdesk.plobos.xyz:21117
|
|
||||||
volumes:
|
|
||||||
- ./data:/root
|
|
||||||
networks:
|
|
||||||
- rustdesk-net
|
|
||||||
depends_on:
|
|
||||||
- hbbr
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
hbbr:
|
|
||||||
container_name: hbbr
|
|
||||||
ports:
|
|
||||||
- 21117:21117
|
|
||||||
- 21119:21119
|
|
||||||
image: rustdesk/rustdesk-server:latest
|
|
||||||
command: hbbr
|
|
||||||
volumes:
|
|
||||||
- ./data:/root
|
|
||||||
networks:
|
|
||||||
- rustdesk-net
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
@ -1,12 +0,0 @@
|
|||||||
services:
|
|
||||||
searxng:
|
|
||||||
container_name: searxng
|
|
||||||
image: searxng/searxng:latest
|
|
||||||
ports:
|
|
||||||
- "8080:8080"
|
|
||||||
volumes:
|
|
||||||
- /data/searxng/etc:/etc/searxng:rw
|
|
||||||
environment:
|
|
||||||
- BASE_URL=https://searxng.plobos.xyz/
|
|
||||||
INSTANCE_NAME=plobos
|
|
||||||
restart: unless-stopped
|
|
Loading…
Reference in New Issue
Block a user