14 lines
235 B
Makefile
14 lines
235 B
Makefile
build:
|
|
docker build -t cloudstack-sim .
|
|
|
|
clean:
|
|
docker rm -f cloudstack
|
|
|
|
run:
|
|
docker run --name cloudstack -d -p 8080:8080 -p 8888:8888 cloudstack-sim
|
|
|
|
shell:
|
|
docker exec -it cloudstack /bin/bash
|
|
|
|
logs:
|
|
docker logs -f cloudstack
|