BikeBike Docker Container Image for BikeBinder https://bikebinder.bikelover.org
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 10cbbc6e03 Added some TODOs 8 years ago
Dockerfile Added some TODOs 8 years ago
LICENSE Initial commit 9 years ago
README.md Create README.md 9 years ago
bikebinder.conf Updates to the newest version. Nice changes. 8 years ago
devise.rb Updates to the newest version. Nice changes. 8 years ago

README.md

#BikeBinder

BikeBike Docker Container Image for BikeBinder

BikeBinder is Free Rides Inventory System application.

##Pull the repository

docker pull bikebike/bikebinder

##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="freehub" bikebike/bikebinder

##Password

Password is password for staff@freeridepgh.org and volunteer@freeridepgh.org.

##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