Compare commits

..

No commits in common. "c62080e45407b3a5dc1128b875b181c346ecc84d" and "72442e869579b69aa57b9476c3e365cf60e8ad4c" have entirely different histories.

4 changed files with 1 additions and 52 deletions

View File

@ -1,3 +1,2 @@
# docker-infrastructure
test

View File

@ -2,12 +2,11 @@ version: "3"
services:
server:
image: gitea/gitea:1.20.4
image: gitea/gitea:latest
container_name: gitea
environment:
- USER_UID=1000
- USER_GID=1000
- LANG=ru-RU
restart: always
volumes:
- /mnt/containers/gitea/container-data/data:/data:Z

View File

@ -4,8 +4,6 @@ services:
image: oxidized/oxidized:latest
container_name: oxidized
privileged: true
environment:
CONFIG_RELOAD_INTERVAL: 600
# ports:
# - 8888:8888
volumes:

View File

@ -1,47 +0,0 @@
services:
ss-client:
image: shadowsocks/shadowsocks-libev:latest
container_name: ss-client
command: ss-local
-s ${OUTLINE_SERVER_IP}
-p ${OUTLINE_SERVER_PORT}
-k ${OUTLINE_SERVER_ACCESS_KEY}
-m chacha20-ietf-poly1305
-l 1080
-b 0.0.0.0
networks:
- proxy_network
restart: unless-stopped
sysctls:
- net.ipv6.conf.all.disable_ipv6=1
- net.ipv6.conf.default.disable_ipv6=1
- net.ipv6.conf.lo.disable_ipv6=1
socks-proxy:
image: serjs/go-socks5-proxy:v0.0.1
container_name: socks-proxy
ports:
- "1081:1080"
environment:
- PROXY_USER=${PROXY_USER}
- PROXY_PASSWORD=${PROXY_PASSWORD}
- SOCKS5_HOST=ss-client
- SOCKS5_PORT=1080
- PROXY_NEED_AUTH=true
- ENABLE_IPV6=false
networks:
- proxy_network
restart: unless-stopped
sysctls:
- net.ipv6.conf.all.disable_ipv6=1
- net.ipv6.conf.default.disable_ipv6=1
- net.ipv6.conf.lo.disable_ipv6=1
depends_on:
- ss-client
networks:
proxy_network:
external: true
enable_ipv6: false
driver_opts:
com.docker.network.enable_ipv6: "false"