Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dirmeier/dockerfiles

A collection of docker files
https://github.com/dirmeier/dockerfiles

command-line-tools container docker dockerfile

Last synced: 9 days ago
JSON representation

A collection of docker files

Awesome Lists containing this project

README

        

# dockerfiles

[![Project Status](http://www.repostatus.org/badges/latest/concept.svg)](http://www.repostatus.org/#concept)

A collection of docker files.

## Usage

Clone the repository and install a docker file like this:

```bash
cd
docker build . -t
```

You can then run the installed image as usual. For instance, if you want to start a container and mount the current directory to `/mnt`:

```bash
docker run -itv $(pwd):/mnt bash
```

With the running container, you can install stuff as always. Restart the container with

```bash
docker start -i
```

Delete all containers using

```bash
docker container rm $(docker container ls -aq)
```

Delete all images using

```bash
docker rmi $(docker images -a -q)
```

## Author

Simon Dirmeier sfyrbnd @ pm me