mirror of https://github.com/portainer/portainer
chore(dev): expose https port (#5457)
parent
2f18f2eb87
commit
8b19623c5b
|
@ -175,7 +175,9 @@ function shell_build_binary_azuredevops(p, a) {
|
|||
function shell_run_container() {
|
||||
return [
|
||||
'docker rm -f portainer',
|
||||
'docker run -d -p 8000:8000 -p 9000:9000 -v ' + portainer_root + '/dist:/app -v ' +
|
||||
'docker run -d -p 8000:8000 -p 9000:9000 -p 9443:9443 -v ' +
|
||||
portainer_root +
|
||||
'/dist:/app -v ' +
|
||||
portainer_data +
|
||||
':/data -v /var/run/docker.sock:/var/run/docker.sock:z -v /var/run/docker.sock:/var/run/alternative.sock:z -v /tmp:/tmp --name portainer portainer/base /app/portainer',
|
||||
].join(';');
|
||||
|
|
Loading…
Reference in New Issue