Last active
June 15, 2021 04:55
-
-
Save powerdefy/3cfdf23fed65ccb095004c0c055e4cf7 to your computer and use it in GitHub Desktop.
Connect to a FortiNet VPNs through docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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