Browsed by
Category: Docker

Docker Containers Management With Portainer

Docker Containers Management With Portainer

Install Portainer Portainer binaries are available on each release page: Portainer releases Download and extract the binary to a location on disk: $ cd /opt $ wget https://github.com/portainer/portainer/releases/download/1.12.4/portainer-1.12.4-linux-amd64.tar.gz $ tar xvpfz portainer-1.12.4-linux-amd64.tar.gz Then just use the portainer binary as you would use CLI flags with Docker. Note: Portainer will try to write its data into the /data folder by default. You must ensure this folder exists first. $ mkdir /data $ cd /opt $ ./portainer/portainer You can use the -p…

Read More Read More

Docker Containers: Getting Started

Docker Containers: Getting Started

SOURCE: https://docs.docker.com/get-started/ Get Started, Part 1: Orientation and Setup Estimated reading time: 3 minutes 1: Orientation 2: Containers 3: Services 4: Swarms 5: Stacks 6: Deploy your app Welcome! We are excited you want to learn how to use Docker. In this six-part tutorial, you will: Get set up and oriented, on this page. Build and run your first app Turn your app into a scaling service Span your service across multiple machines Add a visitor counter that persists data…

Read More Read More