Small list of useful docker containers with nginx as reverse proxy using easyengine. To deploy on Debian/Ubuntu.
wget -qO- https://get.docker.com/ | sh
wget -qO ee rt.cx/ee && bash ee
Install Shipyard in a single command :
curl -sSL https://shipyard-project.com/deploy | bash -s
Shipyard will now be available at http://Your-IP:8080
Exemple for shipyard :
ee site create yourdomain.com --proxy=127.0.0.1:8080
You should have access to shipyard directly from yourdomain.com
docker run --name pasteboard -e ORIGIN=mydomain.tld -e MAX=7 -v /srv/pasteboard/images:/pasteboard/public/storage -p 4000:4000 anthodingo/docker-pasteboard
docker run --name redis -d redis
docker run --name hastebin -d -p 7777:7777 --link redis:redis -e STORAGE_HOST=redis rlister/hastebin
docker run --name db -d mongo:3.0 --smallfiles
docker run --name rocketchat -p 3000:3000 --env ROOT_URL=http://localhost --link db -d rocket.chat
when you say:
"You should have access to shipyard directly from yourdomain.com"
That meant that i don't need edit my /etc/hosts file?
Cause i did step by step but i must to edit my hosts file to see content in "yourdomain.com"