Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/dirmeier/dockerfiles
- Owner: dirmeier
- License: gpl-3.0
- Created: 2018-01-22T13:49:01.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2023-09-12T15:57:09.000Z (over 1 year ago)
- Last Synced: 2024-11-16T13:41:56.950Z (2 months ago)
- Topics: command-line-tools, container, docker, dockerfile
- Language: Dockerfile
- Homepage:
- Size: 21.5 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - dirmeier/dockerfiles - A collection of docker files (Dockerfile)
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