infra(webhook): gitea und webhook dc-yml neu
This commit is contained in:
@@ -1,12 +1,17 @@
|
|||||||
version: "3.8"
|
version: "3.8"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
bruchtal-webhook:
|
bruchtal-webhook:
|
||||||
image: thecatlady/webhook:2.8.0
|
image: thecatlady/webhook:2.8.0
|
||||||
container_name: bruchtal-webhook
|
container_name: bruchtal-webhook
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
networks:
|
||||||
- "9001:9001"
|
- bruchtal-net # 👈 neu für gitea
|
||||||
volumes:
|
volumes:
|
||||||
- /docker/Bruchtal/deploy/hooks.json:/hooks/hooks.json:ro
|
- /docker/Bruchtal/deploy/hooks.json:/hooks/hooks.json:ro
|
||||||
- /docker/Bruchtal:/docker/Bruchtal:rw
|
- /docker/Bruchtal:/docker/Bruchtal:rw
|
||||||
command: ["-hooks", "/hooks/hooks.json", "-verbose", "-port", "9001", "-ip", "0.0.0.0"]
|
command: ["-hooks", "/hooks/hooks.json", "-verbose", "-port", "9001", "-ip", "0.0.0.0"]
|
||||||
|
|
||||||
|
networks:
|
||||||
|
bruchtal-net:
|
||||||
|
external: true
|
||||||
@@ -1,22 +1,26 @@
|
|||||||
networks:
|
version: "3.8"
|
||||||
gitea:
|
|
||||||
external: false
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
server:
|
server:
|
||||||
image: gitea/gitea:1.24
|
image: gitea/gitea:1.24
|
||||||
container_name: gitea
|
container_name: gitea
|
||||||
environment:
|
environment:
|
||||||
- USER_UID=1000
|
- USER_UID=1000
|
||||||
- USER_GID=1000
|
- USER_GID=1000
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
- gitea
|
- gitea
|
||||||
volumes:
|
- bruchtal-net # 👈 neu für bruchtal-webhook
|
||||||
- /docker/Daten/gitea/data:/data
|
volumes:
|
||||||
- /etc/timezone:/etc/timezone:ro
|
- /docker/Daten/gitea/data:/data
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/timezone:/etc/timezone:ro
|
||||||
ports:
|
- /etc/localtime:/etc/localtime:ro
|
||||||
- "3002:3000"
|
ports:
|
||||||
- "2222:22"
|
- "3002:3000"
|
||||||
#rem
|
- "2222:22"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
gitea:
|
||||||
|
external: false
|
||||||
|
bruchtal-net: # 👈 neu für bruchtal-webhook
|
||||||
|
external: true
|
||||||
Reference in New Issue
Block a user