Skip to content
Home » DICloak Runtime Image

DICloak Runtime Image

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

VariableRequiredDescription
TOKENOptionalAccess token for authentication
USER_EMAILOptionalLogin email address
USER_PASSWDOptionalLogin password
PORTRequiredRuntime service port for local Api
DOCKERRequiredIndicates the container is running in Docker mode

Ports

PortDescription
52140Runtime service port for local Api
45000-45099Port 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:

ResourceRecommended
CPU2 cores
Memory4 GB
Disk10 GB

Notes

  1. Ensure the following ports are available on the host system:

52140

45000-45099

  1. 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.