https://github.com/brint/docker-box
Container for toying around with docker-y things. Includes tools like swarm, docker-machine, docker-compose, and more.
https://github.com/brint/docker-box
Last synced: 5 months ago
JSON representation
Container for toying around with docker-y things. Includes tools like swarm, docker-machine, docker-compose, and more.
- Host: GitHub
- URL: https://github.com/brint/docker-box
- Owner: brint
- License: apache-2.0
- Created: 2015-08-19T19:23:24.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2019-05-08T20:23:18.000Z (about 7 years ago)
- Last Synced: 2025-02-08T05:19:33.438Z (over 1 year ago)
- Language: Dockerfile
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
docker-box
==========
[](https://hub.docker.com/r/brint/docker-box/)
[](https://travis-ci.org/brint/docker-box)
This is a simple container that has most of of the docker tools that people use for demonstration purposes. This container includes:
- docker 18.09.6-ce
- docker-machine 0.16.0
- docker-compose 1.24.0
#### Download the container
This assumes that you already have docker up and running and your environment variables are set appropriately.
Pull it down from Docker Hub:
```
docker pull brint/docker-box
```
#### Building the container
Clone down and build your own:
```
git clone https://github.com/brint/docker-box
cd docker-box
docker build -t brint/docker-box .
```
#### Running the container
This container is meant to be run as a shell.
```
docker run -it brint/docker-box
```
#### Development
Make a feature/bug branch and make a PR back. `build.sh` is included to build the container and perform the tests done in Travis locally.