Last active
April 5, 2023 23:46
-
-
Save sneycampos/5cd79748acec9e27564ba1a1126fdedb to your computer and use it in GitHub Desktop.
kiloview on docker-compose.yaml
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.6' | |
services: | |
kiloview: | |
image: kiloview/klnkserver:latest | |
restart: always | |
ports: | |
- '82:82' | |
- '60000:60000/udp' | |
- '60001:60001/udp' | |
- '30000-30050:30000-30050' | |
- '30000-30050:30000-30050/udp' | |
- '3478-3479:3478-3479' | |
- '3478-3479:3478-3479/udp' | |
- '5000-5100:5000-5100/udp' | |
environment: | |
- WEBPORT=82 | |
# - PLATFORMIP=123.123.123.12 | |
- KLNKPORT=60000 | |
- KLNKFWDPORT=60001 | |
- FWDMIN=30000 | |
- FWDMAX=30050 | |
- TUNMIN=5000 | |
- TUNMAX=5100 | |
- TUNPORT=3478 | |
- TUNUSER="admin" | |
- TUNPASS="kiloview123456" | |
- TUNREALM="demo" | |
volumes: | |
- ./data:/data | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment