BikeBike Docker Container Image for BikeShed
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Jonathan Rosenbaum 3bee2ffd82 Update README.md 9 years ago
Dockerfile History is made for the first demo of Bikeshed 9 years ago
LICENSE Initial commit 9 years ago
README.md Update README.md 9 years ago
bikeshed.conf History is made for the first demo of Bikeshed 9 years ago
extjs-4.1.1.zip History is made for the first demo of Bikeshed 9 years ago
pg_hba.conf History is made for the first demo of Bikeshed 9 years ago
postgresql.conf History is made for the first demo of Bikeshed 9 years ago
seeds.rb History is made for the first demo of Bikeshed 9 years ago

README.md

#BikeShed

BikeBike Docker Container Image for BikeShed

Bikeshed is Velocipede's User, Sales, and Bike Inventory Web App.

##Pull the repository

docker pull bikebike/bikeshed

##Run the docker container

Publish the container's port to the host:

format: ip:hostPort:containerPort | ip::containerPort | hostPort:containerPort

docker run -d -p 3000:3000 --name="bikeshed" bikebike/bikeshed

##Password

Login for test users is on the main website page near the bottom.

##Special Instructions

Add at least 1 bike to use Desktop View.

##How to test/develop inside the running container process

This method uses nsenter. Check out jpetazzo/nsenter on GitHub.

sudo PID=$(docker inspect --format {{.State.Pid}} <container_name_or_ID>)
sudo nsenter --target $PID --mount --uts --ipc --net --pid