Skip to content

coozila/apps

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The Coozila! APPS Library

Discover popular applications provided by Coozila!, expertly containerized and ready for immediate deployment.

Why Use Coozila! Images?

  • 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.

Getting an Image

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.

Running the Application Using Docker Compose

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.