Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/andremiras/dockerfiles

Personal Dockerfiles repository
https://github.com/andremiras/dockerfiles

Last synced: about 2 months ago
JSON representation

Personal Dockerfiles repository

Awesome Lists containing this project

README

        

# Dockerfiles
Personal Dockerfiles repository

## Build & run example
It's possible to build an image from a remote Dockerfile location and run it.
Here is an example with the nfc-tools Dockerfile.

### Build
Build with cloning:
```
docker build -t nfc-tools https://github.com/AndreMiras/dockerfiles.git#develop:nfc-tools
```
Build without cloning (won't work with `COPY` commands).
```
docker build -t nfc-tools https://rawgit.com/AndreMiras/dockerfiles/develop/nfc-tools/Dockerfile
```

### Run
```
docker run -it --rm --privileged -v /dev/bus/usb:/dev/bus/usb nfc-tools
```