mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
235 B
Makefile
15 lines
235 B
Makefile
8 years ago
|
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
|