https://github.com/caub/docker-images
docker images
https://github.com/caub/docker-images
Last synced: 3 months ago
JSON representation
docker images
- Host: GitHub
- URL: https://github.com/caub/docker-images
- Owner: caub
- Created: 2018-05-18T13:11:23.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-05-13T15:13:10.000Z (about 7 years ago)
- Last Synced: 2025-03-22T22:18:04.194Z (over 1 year ago)
- Language: Dockerfile
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Docker images
### bcrypt
Run bcrypt from command-line
```sh
docker run --rm -i caub/bcrypt <<<'hello world'
```
### nginx-dev
A basic static server useful for development
```sh
docker run --rm -p 8000:80 -v $PWD:/usr/share/nginx/html:ro caub/nginx-dev
```
### node-ci
node:10-slim with `git` installed for CI
```sh
docker run --rm caub/node:10-ci git --version
```
### puppeteer
Same as mentioned in [GoogleChrome/puppeteer/docs/troubleshooting.md#running-puppeteer-in-docker](https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md#running-puppeteer-in-docker)