Quick Start
Get Camouflage Community Edition running in 2 minutes with just two commands.
Prerequisites
- Docker installed on your system
- Port 9443 (HTTPS) and 61700/UDP available
Installation
1. Create Docker Volume
docker volume create camouflage_data
This creates a persistent volume to store your Camouflage configuration and data.
2. Run Camouflage CE
docker run -d -p 9443:9443 -p 61700:61700/udp \
--name camouflage-ce --restart=always \
-v camouflage_data:/data \
camouflage/camouflage-ce:latest
This command:
- Runs Camouflage CE as a daemon (
-d) - Exposes port 9443 for the web interface (HTTPS)
- Exposes port 61700/UDP for the VPN tunnel
- Automatically restarts the container if it stops
- Mounts the persistent volume for data storage
3. Access the Web Interface
Open your browser and navigate to:
https://localhost:9443
You'll see a self-signed certificate warning - this is expected for the initial setup. Accept the certificate to proceed.
What's Next?
Now that Camouflage CE is running:
- Complete Setup - Follow the initial setup wizard
- Create Users - Add users to your network
- Configure Gateway - Set up access rules and permissions
- Connect Clients - Download and install client apps on your devices
Advanced Options
For production deployments, consider:
- Docker Compose Setup - Multi-container orchestration
- Kubernetes Deployment - Production-grade scaling
- Gateway Configuration - Advanced network setup
Troubleshooting
Container won't start?
docker logs camouflage-ce
Need to reset?
docker stop camouflage-ce
docker rm camouflage-ce
docker volume rm camouflage_data
Need Help?
- Architecture Overview - Understand how Camouflage works
- Key Concepts - Learn the fundamentals
- Community Forum - Ask questions