Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ab4d6c2242 | |||
| 4e138e5987 | |||
| 98ccf1f0f3 | |||
| f50adb4072 | |||
| 580a7a95ca | |||
| 134d4e1078 | |||
| 1413cc1753 | |||
| cba2d917fa | |||
| 3b8187f15e | |||
| 042e21731e | |||
| ae88cf44c6 | |||
| 4396c69849 | |||
| 2222510f85 | |||
| a953b2ab16 |
@@ -21,7 +21,7 @@ jobs:
|
|||||||
-X 'GET' \
|
-X 'GET' \
|
||||||
-H 'Accept: application/json' \
|
-H 'Accept: application/json' \
|
||||||
-H 'Authorization: token ${{ secrets.BOT_GITEA_TOKEN }}' \
|
-H 'Authorization: token ${{ secrets.BOT_GITEA_TOKEN }}' \
|
||||||
-s | jq '{index: .number, state: .state}')
|
-sS | jq '{index: .number, state: .state}')
|
||||||
pr_state=$(echo ${pr_check} | jq -r '.state')
|
pr_state=$(echo ${pr_check} | jq -r '.state')
|
||||||
|
|
||||||
- name: Create PR
|
- name: Create PR
|
||||||
|
|||||||
+70
-4
@@ -503,6 +503,56 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
default: null
|
default: null
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
bunkerweb:
|
||||||
|
container_name: bunkerweb
|
||||||
|
environment:
|
||||||
|
SERVER_NAME: www.trez.wtf
|
||||||
|
API_WHITELIST_IP: 172.18.0.0/16 192.168.1.0/24
|
||||||
|
USE_REAL_IP: yes
|
||||||
|
REAL_IP_FROM: 172.18.0.0/16
|
||||||
|
REAL_IP_HEADER: X-Forwarded-For
|
||||||
|
expose:
|
||||||
|
- 8080
|
||||||
|
- 8443
|
||||||
|
image: bunkerity/bunkerweb:latest
|
||||||
|
labels:
|
||||||
|
bunkerweb.INSTANCE: yes
|
||||||
|
restart: unless-stopped
|
||||||
|
bunkerweb-scheduler:
|
||||||
|
container_name: bunkerweb-scheduler
|
||||||
|
depends_on:
|
||||||
|
- bunkerweb
|
||||||
|
- docker-socket-proxy
|
||||||
|
environment:
|
||||||
|
DOCKER_HOST: tcp://dockerproxy:2375
|
||||||
|
image: bunkerity/bunkerweb-scheduler:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- bunkerweb-data:/data
|
||||||
|
bunkerweb-ui:
|
||||||
|
container_name: bunkerweb-ui
|
||||||
|
depends_on:
|
||||||
|
- bunkerweb
|
||||||
|
- docker-socket-proxy
|
||||||
|
environment:
|
||||||
|
DOCKER_HOST: tcp://dockerproxy:2375
|
||||||
|
expose:
|
||||||
|
- 7000
|
||||||
|
image: bunkerity/bunkerweb-ui:latest
|
||||||
|
labels:
|
||||||
|
homepage.group: Privacy/Security
|
||||||
|
homepage.name: Bunkerweb
|
||||||
|
homepage.href: https://bunker.${MY_TLD}
|
||||||
|
homepage.icon: bunker.svg
|
||||||
|
homepage.description: Next-gen WAF
|
||||||
|
swag: enable
|
||||||
|
swag_port: 7000
|
||||||
|
swag_url: bunker.${MY_TLD}
|
||||||
|
swag.uptime-kuma.enabled: true
|
||||||
|
swag.uptime-kuma.monitor.url: https://bunker.${MY_TLD}
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- bunkerweb-data:/data
|
||||||
castopod:
|
castopod:
|
||||||
container_name: castopod
|
container_name: castopod
|
||||||
depends_on:
|
depends_on:
|
||||||
@@ -4382,6 +4432,24 @@ services:
|
|||||||
source: /etc/localtime
|
source: /etc/localtime
|
||||||
target: /etc/localtime
|
target: /etc/localtime
|
||||||
type: bind
|
type: bind
|
||||||
|
soularr:
|
||||||
|
container_name: soularr
|
||||||
|
depends_on:
|
||||||
|
- lidarr
|
||||||
|
- soulseek
|
||||||
|
environment:
|
||||||
|
PUID: ${PUID}
|
||||||
|
PGID: ${PGID}
|
||||||
|
TZ: ${TZ}
|
||||||
|
#Script interval in seconds
|
||||||
|
SCRIPT_INTERVAL: 300
|
||||||
|
image: mrusse08/soularr:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
#"You can set /downloads to whatever you want but will then need to change the Slskd download dir in your config file"
|
||||||
|
- ${DOCKER_VOLUME_STORAGE}/downloads:/downloads
|
||||||
|
#Select where you are storing your config file. Leave "/data" since thats where the script expects the config file to be
|
||||||
|
- ${DOCKER_VOLUME_CONFIG}/soularr:/data
|
||||||
soulseek:
|
soulseek:
|
||||||
container_name: soulseek
|
container_name: soulseek
|
||||||
depends_on:
|
depends_on:
|
||||||
@@ -6930,6 +6998,8 @@ volumes:
|
|||||||
name: authelia-pg-db
|
name: authelia-pg-db
|
||||||
bitmagnet-pg-db:
|
bitmagnet-pg-db:
|
||||||
name: bitmagnet-pg-db
|
name: bitmagnet-pg-db
|
||||||
|
bunkerweb-data:
|
||||||
|
name: bunkerweb-data
|
||||||
castopod-media:
|
castopod-media:
|
||||||
name: castopod-media
|
name: castopod-media
|
||||||
crowdsec-config:
|
crowdsec-config:
|
||||||
@@ -6984,10 +7054,6 @@ volumes:
|
|||||||
name: localai_data
|
name: localai_data
|
||||||
mastodon-pg-db:
|
mastodon-pg-db:
|
||||||
name: mastodon-pg-db
|
name: mastodon-pg-db
|
||||||
meshcentral-data:
|
|
||||||
meshcentral-user_files:
|
|
||||||
meshcentral-backup:
|
|
||||||
meshcentral-web:
|
|
||||||
mongodb_config:
|
mongodb_config:
|
||||||
name: mongo1_config
|
name: mongo1_config
|
||||||
mongodb_data:
|
mongodb_data:
|
||||||
|
|||||||
Reference in New Issue
Block a user