alpine/plasma/up
2024-07-23 03:09:00 +00:00

11 lines
280 B
Bash
Executable file

#!/usr/bin/env bash
# Docker build
# Optional buildtag
# DOCKER_BUILDKIT=1 \
# docker build . \
# --build-arg debug=${debug:-""} \
# --tag ${buildtag:-myvnc/novnc}
case ${1} in
build) docker compose up --build --detach;;
*) docker compose up --detach;;
esac