18 lines
364 B
YAML
Executable File
18 lines
364 B
YAML
Executable File
version: '3'
|
|
services:
|
|
sslh:
|
|
container_name: sslh
|
|
hostname: sslh
|
|
image: oorabona/sslh:latest
|
|
environment:
|
|
SSH_HOST: 192.168.1.31
|
|
SSH_PORT: 2222
|
|
OPENVPN_HOST: 192.168.1.31
|
|
OPENVPN_PORT: 1194
|
|
HTTPS_HOST: 192.168.1.32
|
|
HTTPS_PORT: 8443
|
|
command:
|
|
- -f
|
|
ports:
|
|
- 0.0.0.0:443:443
|
|
restart: always |