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 :: ubuntu du sort by dir size 
Shell :: copy laravel project from github 
Shell :: telnet install on mac 
Shell :: how to know screen resolution linux 
Shell :: Preprocessor dependency "sass" not found. Did you install it? 
Shell :: Allow and Block Ports Using Port in ubuntu 
Shell :: upgrade git on centos 7 
Shell :: jango.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module 
Shell :: adb reverse tcp 8081 
Shell :: error: cannot open .git/FETCH_HEAD: Permission denied 
Shell :: hello world powershell 
Shell :: update cocoapods version mac 
Shell :: Could not find tools.jar debian 
Shell :: install psycopg2 ubuntu 20.04 
Shell :: winehq-stable : Depends: wine-stable (= 5.0.1~bionic) 
Shell :: git reset origin 
Shell :: install postman ubuntu 
Shell :: commit no verify 
Shell :: (‘08001’, ‘[08001] [Microsoft][ODBC Driver 17 for SQL Server]Client unable to establish connection (0) (SQLDriverConnect)’) 
Shell :: install react 16 
Shell :: make docker sudo less 
Shell :: uninstall lightdm 
Shell :: delete branch from remote 
Shell :: install compass mongodb ubuntu 
Shell :: ubuntu unzip file 
Shell :: linux recursively find directory by name 
Shell :: download woeusb for ubuntu 20.04 
Shell :: download draw.io for ubuntu 
Shell :: view installed rpms 
Shell :: delete namespace stuck in terminating 
ADD CONTENT
Topic
Content
Source link
Name
6+3 =