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.
ansible/test/utils/docker/cloudstack-simulator/Makefile

15 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