https://github.com/hopsoft/docker-images
https://github.com/hopsoft/docker-images
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hopsoft/docker-images
- Owner: hopsoft
- License: mit
- Created: 2013-10-08T03:56:10.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-11-15T23:53:54.000Z (almost 12 years ago)
- Last Synced: 2025-02-09T15:25:54.275Z (8 months ago)
- Language: Shell
- Size: 172 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Docker Images
The source used to build my public Docker images.
## Build an Image
```bash
vagrant up
vagrant ssh
sudo docker build -t hopsoft/mri-2.0 /vagrant/mri-2.0
```## Run an Image
```shell
vagrant up
vagrant ssh
sudo docker run -i -t hopsoft/rbx-2.0 bash
ruby -v
```If you receive the error:
```
Error starting container 3e4798cd37ce: fork/exec /usr/bin/lxc-start: operation not permitted
```Simply run again & things should work the 2nd time.
```
sudo docker run -i -t hopsoft/rbx-2.0 bash
```This is a known Docker issue & should be [fixed soon](https://github.com/dotcloud/docker/pull/1489).