Enterprise Edition
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
# Download docker-compose.yml from Github
curl -L https://pamirs.oss-cn-hangzhou.aliyuncs.com/oinone/installer/docker-compose.yml -o docker-compose.yml
# Download docker-compose.yml from Gitee
curl -L https://pamirs.oss-cn-hangzhou.aliyuncs.com/oinone/installer/docker-compose.yml -o docker-compose.yml(II) Modify docker-compose.yml to Mount the License
services:
backend:
container_name: oinone-backend
volumes:
- ./pks:/opt/pamirs/pks(III) Modify the .env File to Configure License Information
# Enter your subject name
LIC_SUBJECT=<subject>
# Enter your license file name
LIC_FILE=pks/<license.lic>Note:
For more information about the .env file, please refer to: Oinone Designer Configuration Guide
(IV) Start the Oinone Designer
# MacOS/Linux
docker compose up -d
# Windows
docker compose -p oinone up -dPS: 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
docker logs -f oinone-backend(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
# MacOS/Linux
docker compose down -v
# Windows
docker compose -p oinone down -v