docker
This commit is contained in:
@@ -9,6 +9,40 @@ networks:
|
||||
|
||||
services:
|
||||
|
||||
# transmission:
|
||||
# image: lscr.io/linuxserver/transmission:latest
|
||||
# container_name: transmission
|
||||
# environment:
|
||||
# - PUID=1000
|
||||
# - PGID=1000
|
||||
# - TZ=America/Chicago
|
||||
# - TRANSMISSION_WEB_HOME=/transmissionic/ #optional
|
||||
# # - USER=username #optional
|
||||
# # - ${PASS}=password #optional
|
||||
# # - WHITELIST=iplist #optional
|
||||
# # - PEERPORT=peerport #optional
|
||||
# # - HOST_WHITELIST=dnsname list #optional
|
||||
# volumes:
|
||||
# - /docker/store/transmission:/config
|
||||
# - /home/poslop:/downloads
|
||||
# - /home/poslop/Downloads:/watch
|
||||
# ports:
|
||||
# - 9091:9091
|
||||
# - 51413:51413
|
||||
# - 51413:51413/udp
|
||||
# restart: unless-stopped
|
||||
|
||||
vaultwarden:
|
||||
image: vaultwarden/server:latest
|
||||
container_name: vaultwarden
|
||||
restart: always
|
||||
networks:
|
||||
- net
|
||||
ports:
|
||||
- "8008:80"
|
||||
volumes:
|
||||
- /docker/store/vaultwarden/:/data/
|
||||
|
||||
gitea:
|
||||
image: gitea/gitea:latest
|
||||
container_name: gitea
|
||||
@@ -64,7 +98,7 @@ services:
|
||||
- 1.1.1.1
|
||||
environment:
|
||||
TZ: 'America/Chicago'
|
||||
WEBPASSWORD: ${PASS}
|
||||
WEBPASSWORD: ${PASS}
|
||||
# Volumes store your data between container upgrades
|
||||
volumes:
|
||||
- '/docker/store/pihole/etc-pihole:/etc/pihole'
|
||||
@@ -110,14 +144,14 @@ services:
|
||||
|
||||
ncdb:
|
||||
container_name: ncdb
|
||||
image: mariadb
|
||||
image: mariadb:10.5
|
||||
restart: unless-stopped
|
||||
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
|
||||
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
|
||||
volumes:
|
||||
- /docker/store/nextcloud/db:/var/lib/mysql
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=${PASS2}
|
||||
- MYSQL_PASSWORD=${PASS2}
|
||||
- MYSQL_ROOT_PASSWORD=${PASS}
|
||||
- MYSQL_PASSWORD=${PASS}
|
||||
- MYSQL_DATABASE=nextcloud
|
||||
- MYSQL_USER=nextcloud
|
||||
- MYSQL_HOST=ncdb
|
||||
@@ -125,7 +159,7 @@ services:
|
||||
|
||||
nextcloud:
|
||||
container_name: nextcloud
|
||||
image: nextcloud
|
||||
image: nextcloud:24.0.6
|
||||
restart: unless-stopped
|
||||
user: 1000:1000
|
||||
depends_on:
|
||||
@@ -134,12 +168,16 @@ services:
|
||||
- /docker/store/nextcloud/next:/var/www/html
|
||||
- /home/poslop:/home/poslop
|
||||
- /docker/store/nextcloud/php.ini:/usr/local/etc/php/conf.d/php.ini
|
||||
hostname: mintyserver.net
|
||||
environment:
|
||||
- UMASK=002
|
||||
- MYSQL_PASSWORD=
|
||||
- MYSQL_DATABASE=nextcloud
|
||||
- MYSQL_USER=nextcloud
|
||||
- MYSQL_HOST=ncdb
|
||||
- NEXTCLOUD_HOSTNAME=mintyserver.net
|
||||
#- NEXTCLOUD_ADMIN_USER=poslop
|
||||
#- NEXTCLOUD_ADMIN_PASSWORD=${PASS}
|
||||
networks: ["net"]
|
||||
ports:
|
||||
- 8800:80
|
||||
@@ -147,7 +185,7 @@ services:
|
||||
qflood:
|
||||
container_name: qflood
|
||||
restart: unless-stopped
|
||||
image: cr.hotio.dev/hotio/qflood
|
||||
image: cr.hotio.dev/hotio/qflood:release-4.4.3.1--4.7.0
|
||||
ports:
|
||||
- "8080:8080"
|
||||
- "3000:3000"
|
||||
|
||||
@@ -121,7 +121,7 @@ http {
|
||||
##
|
||||
# Virtual Host Configs
|
||||
##
|
||||
include /config/nginx/site-confs/*;
|
||||
include /config/nginx/site-confs/*.conf;
|
||||
#Removed lua. Do not remove this comment
|
||||
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# DOMAIN = example.com
|
||||
|
||||
location /git {
|
||||
return 301 $scheme://$host/gitea/;
|
||||
return 301 $scheme://$host/git/;
|
||||
}
|
||||
|
||||
location ^~ /git/ {
|
||||
|
||||
Reference in New Issue
Block a user