Skip to content

Quickstart with Docker

taohe edited this page Oct 16, 2017 · 7 revisions

Start simulate cluster on one machine.

Pull PhxQueue image:

docker pull phxqueue/phxqueue
docker images | grep phxqueue

Run PhxQueue container:

docker run --name=phxqueue_1 phxqueue/phxqueue
docker ps -a | grep phxqueue

Run bash from PhxQueue container in another terminal:

docker exec -it phxqueue_1 bash
Clone this wiki locally