Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Portainer | 25,702 | 1 | a day ago | 78 | April 21, 2021 | 1,140 | zlib | Go | ||
Making Docker and Kubernetes management easy. | ||||||||||
Awesome Docker | 25,412 | 8 days ago | apache-2.0 | |||||||
:whale: A curated list of Docker resources and projects | ||||||||||
Vulhub | 14,145 | 4 days ago | 40 | mit | Dockerfile | |||||
Pre-Built Vulnerable Environments Based on Docker-Compose | ||||||||||
Dockerfiles | 13,133 | 23 days ago | 77 | mit | Dockerfile | |||||
Various Dockerfiles I use on the desktop and on servers. | ||||||||||
Kaniko | 12,428 | 1 | a day ago | 29 | August 10, 2022 | 579 | apache-2.0 | Go | ||
Build Container Images In Kubernetes | ||||||||||
Laradock | 11,836 | 11 days ago | 148 | mit | Dockerfile | |||||
Full PHP development environment for Docker. | ||||||||||
Hadolint | 8,645 | 1 | 9 days ago | 66 | July 09, 2022 | 146 | gpl-3.0 | Haskell | ||
Dockerfile linter, validate inline bash, written in Haskell | ||||||||||
Docker Node | 7,761 | 2 days ago | 114 | mit | Dockerfile | |||||
Official Docker Image for Node.js :whale: :turtle: :rocket: | ||||||||||
V2ray For Doprax | 7,690 | 15 days ago | Dockerfile | |||||||
The tool can install v2ray on the Doprax, including VMess and VLess protocols, it will automatically switch IP, you need to fork this projects, read readme.md and run it. Create By ifeng. | ||||||||||
Dillinger | 7,664 | 18 days ago | 109 | mit | HTML | |||||
The last Markdown editor, ever. |
"Review code, discuss changes, share knowledge, and identify defects across SVN, Git, Mercurial, CVS, and Perforce." - [Source]
Product | Version | Tags | Dockerfile |
---|---|---|---|
Crucible | 4.4.1 | 4.4.1, latest | Dockerfile |
You may also like:
Docker-CLI:
Just type and follow the manual installation procedure in your browser:
$ docker run -d -p 8060:8060 --name crucible blacklabelops/crucible
Point your browser to http://yourdockerhost:8060
Firstly, start the database server for Crucible:
Note: Change Password!
$ docker run --name postgres_crucible -d \
-e 'POSTGRES_DB=crucibledb' \
-e 'POSTGRES_USER=crucibledb' \
-e 'POSTGRES_PASSWORD=jellyfish' \
-e 'POSTGRES_ENCODING=UTF8' \
blacklabelops/postgres
Secondly, start Crucible:
$ docker run -d --name crucible \
--link postgres_crucible:postgres_crucible \
-p 8060:8060 blacklabelops/crucible
Starts Crowd and links it to the postgresql instances. JDBC URL: jdbc:postgresql://postgres_crucible/crucibledb
Thirdly, configure your Crucible yourself and fill it with a test license.
Point your browser to http://yourdockerhost:8060
System Settings
-> Database
Edit
and fill out the form:PostgreSQL
Bundled
jdbc:postgresql://postgres_crucible:5432/crucibledb
crucibledb
jellyfish
5
20
Test connection
and then Save & Migrate
Enjoy Crucible!
First install:
Vagrant is fabulous tool for pulling and spinning up virtual machines like docker with containers. I can configure my development and test environment and simply pull it online. And so can you! Install Vagrant and Virtualbox and spin it up. Change into the project folder and build the project on the spot!
$ vagrant up
$ vagrant ssh
[[email protected] ~]$ cd /vagrant
[[email protected] ~]$ docker-compose up
Crucible will be available on http://localhost:8080 on the host machine.