mirror of
https://github.com/bensuperpc/infrastructure.git
synced 2024-12-22 16:54:26 +01:00
Ad torrent
Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
This commit is contained in:
parent
6915ecb88d
commit
01cd09f1e5
2
Makefile
2
Makefile
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
DOCKER := docker
|
DOCKER := docker
|
||||||
|
|
||||||
PROFILES := webserver database wordpress adminer uptime-kuma portainer
|
PROFILES := webserver database wordpress adminer uptime-kuma portainer qbittorrent
|
||||||
PROFILE_CMD := $(addprefix --profile ,$(PROFILES))
|
PROFILE_CMD := $(addprefix --profile ,$(PROFILES))
|
||||||
|
|
||||||
COMPOSE_FILES := $(shell find docker-compose*.yml | sed -e 's/^/--file /')
|
COMPOSE_FILES := $(shell find docker-compose*.yml | sed -e 's/^/--file /')
|
||||||
|
@ -44,6 +44,10 @@ uptimekuma.bensuperpc.org {
|
|||||||
reverse_proxy uptime-kuma:3001
|
reverse_proxy uptime-kuma:3001
|
||||||
}
|
}
|
||||||
|
|
||||||
|
torrent.bensuperpc.org {
|
||||||
|
reverse_proxy qbittorrent:8080
|
||||||
|
}
|
||||||
|
|
||||||
link.bensuperpc.org {
|
link.bensuperpc.org {
|
||||||
redir /rickroll https://www.youtube.com/watch?v=dQw4w9WgXcQ permanent
|
redir /rickroll https://www.youtube.com/watch?v=dQw4w9WgXcQ permanent
|
||||||
redir /babyshark https://www.youtube.com/watch?v=XqZsoesa55w permanent
|
redir /babyshark https://www.youtube.com/watch?v=XqZsoesa55w permanent
|
||||||
|
@ -17,7 +17,7 @@ services:
|
|||||||
MYSQL_DATABASE: blog_wp
|
MYSQL_DATABASE: blog_wp
|
||||||
command: '--default-authentication-plugin=mysql_native_password'
|
command: '--default-authentication-plugin=mysql_native_password'
|
||||||
networks:
|
networks:
|
||||||
- blog-network
|
- infra-network
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
|
|
||||||
@ -37,7 +37,7 @@ services:
|
|||||||
- ./config/wordpress/php.ini:/usr/local/etc/php/conf.d/custom.ini:ro
|
- ./config/wordpress/php.ini:/usr/local/etc/php/conf.d/custom.ini:ro
|
||||||
- wordpress:/var/www/html:rw
|
- wordpress:/var/www/html:rw
|
||||||
networks:
|
networks:
|
||||||
- blog-network
|
- infra-network
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
|
|
||||||
@ -57,7 +57,7 @@ services:
|
|||||||
- caddy_config:/config:rw
|
- caddy_config:/config:rw
|
||||||
- ./caddy:/etc/caddy:ro
|
- ./caddy:/etc/caddy:ro
|
||||||
networks:
|
networks:
|
||||||
- blog-network
|
- infra-network
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
# cap_drop:
|
# cap_drop:
|
||||||
@ -83,7 +83,7 @@ services:
|
|||||||
- database
|
- database
|
||||||
- caddy
|
- caddy
|
||||||
networks:
|
networks:
|
||||||
- blog-network
|
- infra-network
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
|
|
||||||
@ -96,13 +96,38 @@ services:
|
|||||||
- uptimekuma_data:/app/data
|
- uptimekuma_data:/app/data
|
||||||
restart: always
|
restart: always
|
||||||
networks:
|
networks:
|
||||||
- blog-network
|
- infra-network
|
||||||
security_opt:
|
security_opt:
|
||||||
- no-new-privileges:true
|
- no-new-privileges:true
|
||||||
|
|
||||||
|
qbittorrent:
|
||||||
|
image: lscr.io/linuxserver/qbittorrent:latest
|
||||||
|
container_name: qbittorrent
|
||||||
|
profiles:
|
||||||
|
- qbittorrent
|
||||||
|
restart: on-failure
|
||||||
|
depends_on:
|
||||||
|
- caddy
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Etc/UTC
|
||||||
|
- WEBUI_PORT=8080
|
||||||
|
- TORRENTING_PORT=6881
|
||||||
|
volumes:
|
||||||
|
- qbittorrent_config:/config
|
||||||
|
- qbittorrent_data:/downloads
|
||||||
|
networks:
|
||||||
|
- infra-network
|
||||||
|
# ports:
|
||||||
|
# - 8080:8080
|
||||||
|
# - 6881:6881
|
||||||
|
# - 6881:6881/udp
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
blog-network:
|
infra-network:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
name: blog-network
|
name: infra-network
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
database:
|
database:
|
||||||
@ -113,5 +138,9 @@ volumes:
|
|||||||
name: caddy_data
|
name: caddy_data
|
||||||
caddy_config:
|
caddy_config:
|
||||||
name: caddy_config
|
name: caddy_config
|
||||||
|
qbittorrent_config:
|
||||||
|
name: qbittorrent_config
|
||||||
|
qbittorrent_data:
|
||||||
|
name: qbittorrent_data
|
||||||
uptimekuma_data:
|
uptimekuma_data:
|
||||||
name: uptimekuma_data
|
name: uptimekuma_data
|
||||||
|
Loading…
Reference in New Issue
Block a user