In this house we require root access to run docker commands.

This commit is contained in:
Anna Rose Wiggins 2023-09-13 01:51:48 +00:00
parent a9d7abe9c8
commit 8d564228dc
2 changed files with 6 additions and 3 deletions

View file

@ -9,7 +9,7 @@ serve:
hugo serve -D --bind 0.0.0.0 -b http://${DEV_IP}:1313/
build:
docker build --no-cache -t ${DOCKER_IMAGE}:${DOCKER_TAG} .
sudo docker build --no-cache -t ${DOCKER_IMAGE}:${DOCKER_TAG} .
push:
docker push ${DOCKER_IMAGE}:${DOCKER_TAG}
sudo docker push ${DOCKER_IMAGE}:${DOCKER_TAG}