Update the apt package index and install packages to allow apt to use a repository over HTTPS:
Install Docker
Add Docker’s official GPG key:
Use the following command to set up the stable repository. To add the nightly or test repository, add the word nightly or test (or both) after the word stable in the commands below.
Update the apt package index, and install the latest version of Docker Engine and container.
Verify docker is running on the system
Install Portainer
docker run -d \
–name=”portainer” \
–restart on-failure \
-p 9000:9000 \
-v /var/run/docker.sock:/var/run/docker.sock \
-v portainer_data:/data \
portainer/portainer-ce
To get the portainer IP Address, open the console and type
Once completed, visit the IP of your container and port 9000. Example: 192.168.10.200:9000.
If you liked this article, please subscribe to our YouTube Channel for tech news, reviews and video tutorials. You can also find us on Twitter, Instagram and Facebook.
The post How to Install Docker and Portainer in a Promox 7 LXC Container appeared first on Crenovated.