Repository which contains docker-compose files of some projects.
Prerequisite: To use this project you should have docker
and docker-compose
installed on your computer/server.
- Download the
docker-compose.yml
file of the project you want to deploy - Pull all docker images required
docker-compose pull
- Deploy the service
docker-compose up -d
Thats it :D
Example:
me@myServer:~$ wget https://raw.githubusercontent.com/TraceSoftwareInternational/Stacks/master/Sonarqube/docker-compose.yml
me@myServer:~$ docker-compose pull && docker-compose up -d
You can also deploy properly a projects directly on your server.
To do that download and execute the install.sh
script available in the folder of the project you want to deploy.
Example:
wget -O - https://raw.githubusercontent.com/TraceSoftwareInternational/Stacks/master/Sonarqube/install.sh | bash
This script will deploy the project in systemd
and enable it at startup.
- Sonarqube. A Sonarqube with PostgreSQL database.