Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install portainer

docker volume create portainer_data
docker run -d -p 8000:8000 -p 9000:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce
Comment

install portainer docker

#First, create the volume that Portainer Server will use to store its database:
docker volume create portainer_data;
#Then, download and install the Portainer Server container:
# Get The latest version name form here
#htps://github.com/portainer/portainer/releases/
docker run -d -p 8000:8000 -p 9443:9443 --name portainer 
    --restart=always 
    -v /var/run/docker.sock:/var/run/docker.sock 
    -v portainer_data:/data 
    portainer/portainer-ce:2.14.1
Comment

install portainer docker

$docker run -d -p 9000:9000 --name portainer --restart always -v /var/run/docker.sock:/var/run/docker.sock -v/data/portainer/data:/data portainer/portainer
Comment

portainer install

docker volume create portainer_data
docker run -d -p 9000:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:latest
Comment

PREVIOUS NEXT
Code Example
Shell :: no matching key exchange method found. Their offer: diffie-hellman-group14-sha1,diffie-hellman-group1-sha1 
Shell :: show applications shortcut ubuntu 
Shell :: shell script mac 
Shell :: nodemon use 
Shell :: find tomcat location in mac 
Shell :: linux move all files to another folder 
Shell :: docker-compose build 
Shell :: dash bootstrap import 
Shell :: install mysql in debian 
Shell :: java to jar 
Shell :: vim delete line 
Shell :: netbeans 8.2 download ubuntu 
Shell :: alias bash laravel 
Shell :: netstat pid 
Shell :: how to install deb package with apt 
Shell :: how to copy file in root directory 
Shell :: git reset add 
Shell :: yarn install raspberry pi 
Shell :: how to login github in terminal 
Shell :: run file linux 
Shell :: install vim plug neovim 
Shell :: git exclude some files from git commit 
Shell :: install bootstrap via npm 
Shell :: how to add key pair to ec2 instance terraform 
Shell :: env variable for access key and secret key in terraform 
Shell :: update metasploit 
Shell :: cambiar nombre branch git 
Shell :: bash count lines 
Shell :: flutter android sdkmanager not found 
Shell :: float right in react js 
ADD CONTENT
Topic
Content
Source link
Name
1+6 =