mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-02 23:31:25 -07:00
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
|