Skip to content

Instantly share code, notes, and snippets.

@powerdefy
Last active June 15, 2021 04:55
Show Gist options
  • Save powerdefy/3cfdf23fed65ccb095004c0c055e4cf7 to your computer and use it in GitHub Desktop.
Save powerdefy/3cfdf23fed65ccb095004c0c055e4cf7 to your computer and use it in GitHub Desktop.
Connect to a FortiNet VPNs through docker
version: "3.7"
services:
forticlient:
image: c0d1um/docker-forticlient
environment:
- VPNADDR=$VPNADDR
- VPNUSER=$VPNUSER
- VPNPASS=$VPNPASS
- VPNTIMEOUT=$VPNTIMEOUT
privileged: true
test:
image: python:3.8
depends_on:
- forticlient
command: "tail -f /dev/null"
network_mode: service:forticlient
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment