mirror of
https://git.myvelabs.com/novnc/alpine.git
synced 2025-12-18 00:16:20 +00:00
Added chromium
This commit is contained in:
parent
30d62c5c9b
commit
0c7d788648
7 changed files with 108 additions and 0 deletions
27
chromium/up
Executable file
27
chromium/up
Executable file
|
|
@ -0,0 +1,27 @@
|
|||
#!/usr/bin/env bash
|
||||
# Docker build
|
||||
# Optional buildtag
|
||||
# DOCKER_BUILDKIT=1 \
|
||||
# docker build . \
|
||||
# --build-arg debug=${debug:-""} \
|
||||
# --tag ${buildtag:-myvnc/novnc}
|
||||
# Grab options
|
||||
while [ ${1} ]
|
||||
do
|
||||
case ${1} in
|
||||
-b | --build | b | build )
|
||||
build="--build"
|
||||
;;
|
||||
-d | --detach | d | detach )
|
||||
detach="--detach"
|
||||
;;
|
||||
bd | db )
|
||||
build="--build"
|
||||
detach="--detach"
|
||||
;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
# Compose up
|
||||
docker compose up ${build} ${detach}
|
||||
Loading…
Add table
Add a link
Reference in a new issue