This project created for helping users to create environment as docker.
- Jenkins
- MariaDB
- MySQL
- PostgreSQL
- SQL Server
- MongoDB
- Redis
- Gogs
- RabbitMQ
- Kafka
- Docker Registry
- If you can't access tools correctly; you can use network features like indicating network as your host machine. For example: you want to access PostgreSQL after running this command;
docker run -d \
--name postgresql \
-p 5432:5432 \
-e POSTGRES_PASSWORD=postgres \
-e PGDATA=/var/lib/postgresql/data/pgdata \
-v /var/docker_volumes/databases/postgresql/data:/var/lib/postgresql/data \
postgres
If you can't access your docker container; you can use host network for simple solution;
docker run -d \
--name postgresql \
--net host \
-e POSTGRES_PASSWORD=postgres \
-e PGDATA=/var/lib/postgresql/data/pgdata \
-v /var/docker_volumes/databases/postgresql/data:/var/lib/postgresql/data \
postgres