Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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)