DICloak Runtime Image is a containerized runtime environment provided by DICloak for running browser automation services inside a Docker container.
This image includes all required dependencies and runtime components. Users can quickly deploy and start the service without installing additional software.
Note: The software contained in this image is proprietary. Redistribution, reverse engineering, or unauthorized commercial usage is prohibited.
Quick Start
1. Download the Image
# Download url
https://dic-sz1.oss-cn-shenzhen.aliyuncs.com/dockers/dicloak-runtime-prod-20260316-1539.tar
# load image
docker load -i dicloak-runtime-prod-20260316-1539.tar
2. Run Container (Token Login)
docker run -d \
--name dicloak-runtime \
-e TOKEN=YOUR_TOKEN \
-e PORT=52140 \
-e DOCKER=1 \
-p 52140:52140 \
-p 127.0.0.1:45000-45099:45000-45099 \
dicloak/runtime-prod:latest
3. Run Container (Account Login)
docker run -d \
--name dicloak-runtime \
-e USER_EMAIL=your@email.com \
-e USER_PASSWD=your_password \
-e PORT=52140 \
-e DOCKER=1 \
-p 52140:52140 \
-p 127.0.0.1:45000-45099:45000-45099 \
dicloak/runtime-prod:latest
Login Priority
If multiple authentication methods are provided, the following priority will be used:
TOKEN > USER_EMAIL + USER_PASSWD
If a TOKEN is present, the container will use the TOKEN for authentication.
Environment Variables
| Variable | Required | Description |
| TOKEN | Optional | Access token for authentication |
| USER_EMAIL | Optional | Login email address |
| USER_PASSWD | Optional | Login password |
| PORT | Required | Runtime service port for local Api |
| DOCKER | Required | Indicates the container is running in Docker mode |
Ports
| Port | Description |
| 52140 | Runtime service port for local Api |
| 45000-45099 | Port mapping range for browser instance |
Container Management
Stop Container
docker stop dicloak-runtime
Start Container
docker start dicloak-runtime
Remove Container
docker rm -f dicloak-runtime
System Requirements
Recommended minimum resources:
| Resource | Recommended |
| CPU | 2 cores |
| Memory | 4 GB |
| Disk | 10 GB |
Notes
- Ensure the following ports are available on the host system:
52140
45000-45099
- If running multiple browser instances, it is recommended to increase shared memory size:
--shm-size=1g
License
Copyright © DICloak.
The software contained in this container image is proprietary software. Unauthorized redistribution, modification, or reverse engineering is prohibited.
For licensing or commercial usage inquiries, please contact the DICloak team.