Official images for running DWAPI on 64 bit linux systems
50K+
If you do not have Docker installed, visit https://docs.docker.com/get-started/#download-and-install-docker and choose your preferred operating system to download and install Docker
If you do not have Docker installed, use the following steps:
sudo apt update
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
The above-mentioned command:
Next, add the GPG key to ensure the authenticity of the software package.
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Now install the Docker repository using the command:
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
The command installs the latest repository for your specific Ubuntu release (in this case, 20.04).
Start by updating the repository again
sudo apt update
Now you can install the latest Docker version with:
sudo apt-get install docker-ce
To confirm the installation check the version of Docker:
docker --version
sudo systemctl start docker
sudo systemctl enable docker
sudo systemctl status docker
sudo docker run --name dwapi -p 5757:5757 -p 5753:5753 -d --restart unless-stopped kenyahmis/dwapi:3.xLatest
sudo docker ps -a | grep "dwapi" | awk '{print $1}' | xargs sudo docker rm -f
sudo docker images -a | grep "dwapi" | awk '{print $3}' | xargs sudo docker rmi
sudo docker run --name dwapi -p 5757:5757 -p 5753:5753 -d --restart unless-stopped kenyahmis/dwapi:3.xLatest
Change line bind-address = 127.0.0.1 to #bind-address = 127.0.0.1
bind-address = *
2. Create a DWAPI database user for MySQL
create user 'dwapi'@'%' identified by 'dwapi';
GRANT ALL PRIVILEGES ON *.* TO 'dwapi'@'%' IDENTIFIED BY 'dwapi' WITH GRANT OPTION;
FLUSH PRIVILEGES;
On your browser open dwapi on https://localhost:5753
Please note that for the database connection will need to specify the IP address of the computer and NOT localhost or 127.0.0.1
sudo docker restart dwapi
i) View log files
sudo docker exec -it dwapi ls logs
ii) Copying log files folder to your pc current directory.
sudo docker cp dwapi:/app/logs/ .
Content type
Image
Digest
sha256:86bce4543…
Size
116.4 MB
Last updated
over 1 year ago
docker pull kenyahmis/dwapi