Initial commit: Retro-Proxy-Stack
This commit is contained in:
39
compose.yml
Normal file
39
compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user