Installation
This page will guide you through the installation process of this application.
Get docker-compose.yml
First, create a new directory for the application and download the latest docker-compose.yml
file from the repository.
Configure the application
Open the docker-compose.yml
file in your favorite editor and adjust the following settings:
Change the URL
to the public url of your application and modify the ports
setting to a non public port that is not used by another application on your server.
You can also use Docker networks to communicate with the container from other containers.
Configure the reverse proxy
The application is designed to be used behind a reverse proxy like nginx, that handles the tls termination and proxies the requests to the application. You can find example proxy configurations on the page Reverse Proxy.
Start the application
Finally, start the application with the following command:
Make sure the container is not restarting and check the logs for any errors:
If you open the url of your application in your browser, you should see a welcome page. Congratulations, you have successfully installed the application! 🎉
Next steps
- If you want to pull images from a private registry, you can find more information on the page Private Registry Authentication.
- You can find an guide on how to create a Deploy Token on the page Generate Deploy Token.
- You can find all available configuration options on the page Configuration.