Manual Docker compose installation
If you need to execute a manual Docker compose installation process you can follow the instructions.
You need to have Docker Engine and Docker Compose on your machine. You can either:
Install Docker Engine and Docker Compose as standalone binaries or
Install Docker Desktop which includes both Docker Engine and Docker Compose
Installation instructions specific for Docker Engine on Debian
You don't need to install Python or Redis, as Docker images provide both.
Download the archive from your EasyPON personal cabinet account license, unpack the archive, and go to the unpacked directory by using the commands.
tar -xvf easypon.tar
cd easyponCreate env files
touch .env_docker
touch .envBuild images with the following command:
docker compose buildGenerate .env_docker
docker run --rm easypon-backend init > .env_docker Start your project
docker compose up -d To create an admin user, utilize the login and password from the environment variables specified in the
.env_dockerfile:
docker compose exec -ti backend_main bash compose/backend-entry-point.sh create_userLast updated