...
General Installation Instructions
1. Install Docker
For Mac and Windows: Install Docker Desktop and launch it.
For Linux: Ensure the Docker service is running. Verify by using:
Code Block | ||
---|---|---|
| ||
sudo services docker status |
2. Verify Docker Compose
Make sure Docker Compose is installed. Run:
...
Code Block | ||
---|---|---|
| ||
Docker Compose version {Version} |
3. Log in to Docker
Use the provided Docker access token to log in:
Code Block | ||
---|---|---|
| ||
docker login -u apliqocustomer -p {your-access-token} |
4. Create a new docker network
Create a dedicated network for Apliqo UX:
...
Code Block | ||
---|---|---|
| ||
NETWORK ID NAME DRIVER SCOPE 06e4817f8b43 apliqo-core bridge local |
5. Download and Configure Apliqo UX
Download the Apliqo UX installation package
In the root directory of the package, create a
.env
file (near.env.example
.)Copy the content from
.env.example
into the newly created.env
fileFill in all
environment variables Environment Variables (details below)Status colour Red title REQUIRED
6. Set the APLIQO_SERVER Environment Variable
In docker-compose.yml, set
APLIQO_SERVER
environment variable forapliqo-spa
container.host.docker.internal
- is a reference to your localhost inside the docker network.For Linux it is
172.17.0.1
By default
APLIQO_SERVER
value ishttp://host.docker.internal:${PORT_EXPOSE}
...
Code Block | ||
---|---|---|
| ||
docker compose up -d |
8. Verify That All Containers Are Running
Check that all containers are running properly by listing them:
...
Code Block | ||
---|---|---|
| ||
docker logs ${docker_container_id} |
9. Access Apliqo UX
Once the containers are running, navigate to the following URL in your browser:
http://your-ip-address
By default, the interface will be accessible from port 80.
...