Fix Docker run command indentation

This commit is contained in:
Bram Suurd 2024-02-04 22:29:19 +01:00
parent 7a95861374
commit 07405cf6d7
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ msg_ok "Installed Docker $DOCKER_LATEST_VERSION"
msg_info "Installing Memos"
mkdir /memos/
docker run -d \
$STD docker run -d \
--init \
--name memos \
--publish 80:5230 \
@ -46,7 +46,7 @@ msg_ok "Installed Memos"
read -r -p "Would you like to add Watchtower? <y/N> " prompt
if [[ ${prompt,,} =~ ^(y|yes)$ ]]; then
docker run -d \
$STD docker run -d \
--name watchtower \
--restart unless-stopped \
-v /var/run/docker.sock:/var/run/docker.sock \