Discover popular applications provided by Coozila!, expertly containerized and ready for immediate deployment.
- Up-to-Date: Coozila! actively monitors upstream source changes and promptly publishes new versions of its images through automated systems.
- Latest Features: With Coozila! images, you gain access to the latest bug fixes and features as soon as they are available.
- Consistent Components: Coozila! apps, virtual machines, and cloud images utilize the same components and configuration approach, making it easy to switch between formats based on your project requirements.
- Regular Releases: Coozila! app images are released consistently with the latest distribution packages available.
The recommended way to obtain any of the Coozila! Images is to pull a prebuilt image from the Docker Hub Registry.
docker pull coozila/app
To use a specific version, you can pull a versioned tag:
docker pull coozila/app:[TAG]
If you prefer, you can also build the image yourself by cloning the repository, navigating to the directory containing the Dockerfile, and executing the docker build
command:
git clone https://github.com/coozila/apps.git
cd apps/app
docker build -t coozila/app .
Tip
Remember to replace the app
placeholders in the example command above with the appropriate values.
Each application’s main folder includes a functional docker-compose.yml
file. You can easily run the application using the following command:
curl -sSL https://raw.githubusercontent.com/coozila/apps/main/APP/docker-compose.yml > docker-compose.yml
docker-compose up -d
Tip
Remember to replace the APP
placeholder in the example command above with the correct application name.