Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andremiras/dockerfiles
Personal Dockerfiles repository
https://github.com/andremiras/dockerfiles
Last synced: about 2 months ago
JSON representation
Personal Dockerfiles repository
- Host: GitHub
- URL: https://github.com/andremiras/dockerfiles
- Owner: AndreMiras
- License: mit
- Created: 2016-10-05T12:11:35.000Z (about 8 years ago)
- Default Branch: develop
- Last Pushed: 2024-04-19T16:04:02.000Z (8 months ago)
- Last Synced: 2024-10-27T07:28:09.185Z (about 2 months ago)
- Language: Dockerfile
- Size: 57.6 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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
```