mirror of https://github.com/boa-dev/boa.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
283 B
14 lines
283 B
6 years ago
|
docker-build:
|
||
|
docker build --tag boa .
|
||
|
|
||
|
docker-container:
|
||
|
docker create --tty --interactive \
|
||
|
--name boa \
|
||
|
--hostname boa \
|
||
|
--volume ${PWD}/:/usr/src/myapp \
|
||
|
--publish 9228:9228 \
|
||
|
boa
|
||
|
|
||
|
docker-clean:
|
||
|
docker rm boa || echo "no container"
|
||
|
docker rmi boa || echo "no image"
|