-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
22 lines (22 loc) · 897 Bytes
/
docker-compose.yml
File metadata and controls
22 lines (22 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
version: '2'
services:
softether-vpnclient:
image: "oriolrius/softether-vpnclient:5.02.5180"
container_name: softether-vpnclient
privileged: true
network_mode: host
restart: unless-stopped
volumes:
- ./config/vpn_client.config:/usr/local/libexec/softether/vpnclient/vpn_client.config
- ./config/lang.config:/usr/local/libexec/softether/vpnclient/lang.config
- ./log:/usr/local/libexec/softether/vpnclient/client_log
softether-vpnserver:
image: "oriolrius/softether-vpnserver:5.02.5180"
container_name: softether-vpnserver
privileged: true
network_mode: host
restart: unless-stopped
volumes:
- ./config/vpn_server.config:/usr/local/libexec/softether/vpnserver/vpn_server.config
- ./config/lang.config:/usr/local/libexec/softether/vpnserver/lang.config
- ./log:/usr/local/libexec/softether/vpnserver/server_log