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 :: git squash 
Shell :: docker-compose build context tag own name 
Shell :: install aws cli v2 
Shell :: close tcp port on mac 
Shell :: can i install linux on an external hard drive 
Shell :: iptables remove docker rules 
Shell :: docker compose up only one service 
Shell :: ubuntu no internet connection 
Shell :: git push an existing repository from the command line 
Shell :: bash if 
Shell :: move the file from one linux user to another 
Shell :: npm install --save-dev @angular/cli@latest 
Shell :: git view branch 
Shell :: install solana anchor 
Shell :: clear the git stash 
Shell :: make nextcloud scan for files 
Shell :: github add directory to repository 
Shell :: ubuntu take screenshot with cursor 
Shell :: remove composer package 
Shell :: LINUX TEST FOLDER EXITS 
Shell :: cp folders 
Shell :: how to totally uninstall prettier 
Shell :: debian install ping 
Shell :: install latex 
Shell :: create folder in terminal 
Shell :: ubuntu copy 
Shell :: which equivalent powershell 
Shell :: read string by string in file in linux 
Shell :: git push and pull not asking password 
Shell :: gh clone 
ADD CONTENT
Topic
Content
Source link
Name
1+8 =