Initial commit: Retro-Proxy-Stack

This commit is contained in:
2026-05-20 22:32:08 -04:00
commit a27093d1b8
4 changed files with 125 additions and 0 deletions

39
compose.yml Normal file
View File

@@ -0,0 +1,39 @@
services:
# Using Alpine with Stunnel manually installed to have full control over the config
stunnel:
image: alpine:latest
container_name: stunnel-proxy
restart: always
command: >
sh -c "apk add --no-cache stunnel &&
stunnel /etc/stunnel/stunnel.conf"
volumes:
- ./stunnel.conf:/etc/stunnel/stunnel.conf:ro
ports:
- "110:110"
- "143:143"
- "25:25"
networks:
- mail-proxy
webone:
image: u306060/webone
container_name: webone-proxy
restart: always
ports:
- "8081:8080"
networks:
- mail-proxy
wrp:
image: tenox7/wrp
container_name: wrp-proxy
restart: always
ports:
- "8082:8080"
networks:
- mail-proxy
networks:
mail-proxy:
driver: bridge