shipyard安装

1.Start an data volume instance of RethinkDB:

# docker run -it -d --name shipyard-rethinkdb-data 
    --entrypoint /bin/bash shipyard/rethinkdb -l

2.Start RethinkDB with using the data volume container:

# docker run -it -P -d --name shipyard-rethinkdb 
    --volumes-from shipyard-rethinkdb-data shipyard/rethinkdb

3.Start the Shipyard controller:

# docker run -it -p 8089:8080 -d --name shipyard 
    --link shipyard-rethinkdb:rethinkdb shipyard/shipyard

4.登陆http://ip:8089

原文地址:https://www.cnblogs.com/alexkn/p/4310735.html