mirror of
https://github.com/daylinmorgan/git-server.git
synced 2024-11-14 08:17:52 -06:00
allow localhost ports
This commit is contained in:
parent
63ea9fda6b
commit
27083777c2
2 changed files with 13 additions and 15 deletions
|
@ -1,3 +1,7 @@
|
|||
git.dayl.in {
|
||||
reverse_proxy gitea:3000
|
||||
reverse_proxy 127.0.0.1:3000
|
||||
}
|
||||
|
||||
resunim.dayl.in {
|
||||
reverse_proxy 127.0.0.1:8080
|
||||
}
|
||||
|
|
|
@ -1,9 +1,5 @@
|
|||
version: "3"
|
||||
|
||||
networks:
|
||||
gitea:
|
||||
external: false
|
||||
|
||||
services:
|
||||
gitea:
|
||||
image: gitea/gitea:1.18.3
|
||||
|
@ -12,32 +8,30 @@ services:
|
|||
- USER_UID=1001
|
||||
- USER_GID=1001
|
||||
restart: always
|
||||
networks:
|
||||
- gitea
|
||||
volumes:
|
||||
- ./gitea:/data
|
||||
- /home/git/.ssh/:/data/git/.ssh
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
ports:
|
||||
- "3000:3000"
|
||||
- "222:22"
|
||||
- "127.0.0.1:3000:3000"
|
||||
- "127.0.0.0:222:22"
|
||||
- "127.0.0.1:2222:22"
|
||||
|
||||
caddy:
|
||||
image: caddy:2.5.2-alpine
|
||||
restart: unless-stopped
|
||||
container_name: caddy
|
||||
networks:
|
||||
- gitea
|
||||
ports:
|
||||
- "80:80"
|
||||
- "443:443"
|
||||
- "443:443/udp"
|
||||
# ports:
|
||||
# - "80:80"
|
||||
# - "443:443"
|
||||
# - "443:443/udp"
|
||||
# - "127.0.0.1:8080:8080"
|
||||
volumes:
|
||||
- ./caddy/Caddyfile:/etc/caddy/Caddyfile
|
||||
- caddy_data:/data
|
||||
- caddy_config:/config
|
||||
network_mode: host
|
||||
|
||||
soft-serve:
|
||||
image: charmcli/soft-serve:v0.4.4
|
||||
|
|
Loading…
Reference in a new issue