Installation using Docker

In this section I'll assume that you're very familiar with docker and docker-compose (an IT guy), So let's jump to Docker installation steps.

First extract Script folder from the archive you downloaded from the store, and make a copy of .env.example file and rename it .env, then put your configuration in there (docker will create a database for you),

After that, upload the content of your Script folder to your server/hosting (use SCP, FTP, SFTP), connect to your server via an SSH connection, then run these commands:

docker-compose -p dolinker -f docker-compose-prod.yml up -d --build

docker exec -it dolinker_web_1 ./vendor/bin/doctrine-migrations migrate -n

Last updated