https://github.com/cherkavi/docker-images
real life examples of using docker images
https://github.com/cherkavi/docker-images
docker-image dockerfiles jboss tomcat
Last synced: about 1 year ago
JSON representation
real life examples of using docker images
- Host: GitHub
- URL: https://github.com/cherkavi/docker-images
- Owner: cherkavi
- Created: 2017-10-28T18:33:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-03-08T14:23:24.000Z (over 1 year ago)
- Last Synced: 2025-03-29T10:12:04.132Z (about 1 year ago)
- Topics: docker-image, dockerfiles, jboss, tomcat
- Language: Dockerfile
- Homepage:
- Size: 310 KB
- Stars: 6
- Watchers: 1
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker images and docker-compose solutions
set of docker images for general purposes
for using predefined scripts in documentation properties
update your ".bashrc" with next aliases
( or just update destination session )
```sh
export ROOT_DOCKER_IMAGES="/home/projects/docker-images"
```
## Similar source of information:
* [docker compose for diff stack](https://github.com/docker/awesome-compose)
* [bitnami collection](https://github.com/bitnami)
## [docker hub](https://hub.docker.com/search?q=&type=image)
search in docker hub for a 'ssh'
```sh
SEARCH_CRITERIA=ssh
docker search $SEARCH_CRITERIA
docker search --filter=stars=3 --no-trunc $SEARCH_CRITERIA
docker search --format "{{.Name}}: {{.StarCount}}" $SEARCH_CRITERIA
```