Is a pre-configured container that I used every day. so, I created this docker-compose with pre-configured to use quickly.
- portainer http://localhost:9000
- sqlserver
- mysql
- mariadb
- postgres
- couchdb
- couchbase
- redis
- phpmyadmin http://localhost:8002
- pgadmin4 http://localhost:8004
- adminer http://localhost:8005
- fauxton for couchdb http://localhost:5984/_utils
- couchbase http://localhost:8091
- redis-commander http://localhost:8003
- Camunda BPM http://localhost:8080/camunda
- camunda workbench http://localhost:8088
- rabbitmq http://localhost:15672
Start in the root directory of this project, then
$ docker-compose up --build -d (-d run the containers in background)
$ docker-compose stop
$ docker-compose start
- Username:
nasr
for pgadmin4 use nasr2ldin@gmail.com - Password:
nasr
each container data is persisted inside a volume by default.
In order to entirely shutdown the stack and remove all persisted data, use the following Docker Compose command:
$ docker-compose down -v
$ docker-compose logs -f (-f displays the current logs)
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request.