This section will introduce how to use Docker Compose to quickly deploy the Oinone designer (Enterprise Edition) and access it via a browser.
I. Preparation
- Obtain the Enterprise Edition license
II. Quick Start
(I) Download docker-compose.yml
shell
# Download docker-compose.yml from Github
curl -L https://raw.githubusercontent.com/oinone/oinone-docker-shared/refs/heads/master/oinone/docker-compose.yml -o docker-compose.yml
# Download docker-compose.yml from Gitee
curl -L https://gitee.com/oinone/oinone-docker-shared/raw/master/oinone/docker-compose.yml -o docker-compose.yml1
2
3
4
5
2
3
4
5
(II) Modify docker-compose.yml to Mount the License
yaml
services:
backend:
container_name: oinone-backend
volumes:
- ./pks:/opt/pamirs/pks1
2
3
4
5
2
3
4
5
(III) Modify the .env File to Configure License Information
shell
# Enter your subject name
LIC_SUBJECT=<subject>
# Enter your license file name
LIC_FILE=pks/<license.lic>1
2
3
4
2
3
4
Note:
For more information about the .env file, please refer to: Oinone Designer Configuration Guide
(IV) Start the Oinone Designer
shell
# MacOS/Linux
docker compose up -d
# Windows
docker compose -p oinone up -d1
2
3
4
5
2
3
4
5
PS: The first startup takes a long time. Please be patient. You can open a new terminal to view the backend startup logs at this time.
(V) View the Backend Service Startup Logs
shell
docker logs -f oinone-backend1
(VI) Access the Oinone Designer
Open in the browser: http://127.0.0.1:88
Enter the username/password: admin/admin
(VI) Stop the Oinone Designer
shell
# MacOS/Linux
docker compose down -v
# Windows
docker compose -p oinone down -v1
2
3
4
5
2
3
4
5