mirror of https://github.com/tteck/Proxmox.git
Fix Docker run command indentation
This commit is contained in:
parent
7a95861374
commit
07405cf6d7
|
@ -35,7 +35,7 @@ msg_ok "Installed Docker $DOCKER_LATEST_VERSION"
|
||||||
|
|
||||||
msg_info "Installing Memos"
|
msg_info "Installing Memos"
|
||||||
mkdir /memos/
|
mkdir /memos/
|
||||||
docker run -d \
|
$STD docker run -d \
|
||||||
--init \
|
--init \
|
||||||
--name memos \
|
--name memos \
|
||||||
--publish 80:5230 \
|
--publish 80:5230 \
|
||||||
|
@ -46,7 +46,7 @@ msg_ok "Installed Memos"
|
||||||
|
|
||||||
read -r -p "Would you like to add Watchtower? <y/N> " prompt
|
read -r -p "Would you like to add Watchtower? <y/N> " prompt
|
||||||
if [[ ${prompt,,} =~ ^(y|yes)$ ]]; then
|
if [[ ${prompt,,} =~ ^(y|yes)$ ]]; then
|
||||||
docker run -d \
|
$STD docker run -d \
|
||||||
--name watchtower \
|
--name watchtower \
|
||||||
--restart unless-stopped \
|
--restart unless-stopped \
|
||||||
-v /var/run/docker.sock:/var/run/docker.sock \
|
-v /var/run/docker.sock:/var/run/docker.sock \
|
||||||
|
|
Loading…
Reference in New Issue