Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mudongliang/dockerfiles
Put all the useful Dockerfiles and related tools into this repo
https://github.com/mudongliang/dockerfiles
cve dockerfile edb linux reproduction vulnerability
Last synced: about 16 hours ago
JSON representation
Put all the useful Dockerfiles and related tools into this repo
- Host: GitHub
- URL: https://github.com/mudongliang/dockerfiles
- Owner: mudongliang
- License: gpl-3.0
- Created: 2017-03-12T04:01:37.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-06-05T04:54:12.000Z (over 5 years ago)
- Last Synced: 2024-11-14T09:04:32.744Z (about 1 month ago)
- Topics: cve, dockerfile, edb, linux, reproduction, vulnerability
- Language: Dockerfile
- Homepage:
- Size: 22.5 KB
- Stars: 4
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dockerfiles
Put all the useful Dockerfiles into this repo## How to build docker image with docker file
If you have created corresponding repo in the docker hub, you can directly use:
```
Take EDB-34164 as example,cd EDB-34164;
docker build -t mudongliang/edb-34164 .docker run -i -t mudongliang/edb-34164 /bin/bash
# change something
docker ps -a
# here you could find the container id
docker commit XXXXXXXXX mudongliang/edb-34164
docker login
# login in with your dockerhub account
docker push
```If you have any problem about `docker` commands, you could refer to [Docker Cheat Sheet](https://github.com/wsargent/docker-cheat-sheet)