- Add entrypoint.sh and startup-vnc.sh to shared folder - Override command in docker-compose.json to use /shared/entrypoint.sh - Scripts can now be modified without rebuilding image
76 lines
1.7 KiB
JSON
Executable File
76 lines
1.7 KiB
JSON
Executable File
{
|
|
"schemaVersion": 2,
|
|
"services": [
|
|
{
|
|
"name": "cistech-tunnel",
|
|
"image": "git.alexzaw.dev/alexz/openconnect-vpn:latest",
|
|
"environment": [
|
|
{
|
|
"key": "VPN_EMAIL",
|
|
"value": "${VPN_EMAIL}"
|
|
},
|
|
{
|
|
"key": "VPN_PASSWORD",
|
|
"value": "${VPN_PASSWORD}"
|
|
},
|
|
{
|
|
"key": "VPN_TOTP_SECRET",
|
|
"value": "${VPN_TOTP_SECRET}"
|
|
},
|
|
{
|
|
"key": "VPN_HOST",
|
|
"value": "${VPN_HOST}"
|
|
},
|
|
{
|
|
"key": "VNC_PASSWORD",
|
|
"value": "${VNC_PASSWORD}"
|
|
},
|
|
{
|
|
"key": "TZ",
|
|
"value": "${TZ}"
|
|
},
|
|
{
|
|
"key": "TARGET_IP",
|
|
"value": "${TARGET_IP}"
|
|
}
|
|
],
|
|
"internalPort": 6092,
|
|
"volumes": [
|
|
{
|
|
"hostPath": "${APP_DATA_DIR}/config",
|
|
"containerPath": "/config",
|
|
"readOnly": false
|
|
},
|
|
{
|
|
"hostPath": "${APP_DATA_DIR}",
|
|
"containerPath": "/runtime",
|
|
"readOnly": false
|
|
},
|
|
{
|
|
"hostPath": "/etc/runtipi/repos/runtipi/apps/cistech-tunnel/shared",
|
|
"containerPath": "/shared",
|
|
"readOnly": false
|
|
},
|
|
{
|
|
"hostPath": "/etc/runtipi/repos/runtipi/apps/cistech-tunnel/shared/xstartup",
|
|
"containerPath": "/root/.vnc/xstartup",
|
|
"readOnly": true
|
|
}
|
|
],
|
|
"stopGracePeriod": "30s",
|
|
"devices": [
|
|
"/dev/net/tun"
|
|
],
|
|
"privileged": true,
|
|
"capAdd": [
|
|
"NET_ADMIN"
|
|
],
|
|
"isMain": true,
|
|
"command": ["/shared/entrypoint.sh"],
|
|
"extraLabels": {
|
|
"runtipi.managed": true
|
|
}
|
|
}
|
|
]
|
|
}
|