NSA / docker-compose.yml
Fred808's picture
Upload 5 files
2206dba verified
raw
history blame contribute delete
366 Bytes
version: '3.8'
services:
ikev2_server:
build: .
container_name: pure_python_ikev2_server
# Map the required UDP ports for IKEv2
ports:
- "500:500/udp"
- "4500:4500/udp"
# Map the TCP port for the Web UI
- "8000:8000/tcp"
# Add network administration capability for VPN
cap_add:
- NET_ADMIN
restart: always