Docker Compose Installation
To install aura using Docker Compose, follow these steps:
-
Clone the Repository: Start by cloning the aura repository from GitHub.
git clone https://github.com/mediux-team/aura.git cd aura
-
Tweak the Docker Compose File: Open the
docker-compose.yml
file in a text editor and adjust the settings to match your environment. You may need to set the correct paths for volumes and ports. -
Log in to ghcr.io (if required): If you need to pull images from GitHub Container Registry, log in using:
docker login ghcr.io
-
Create a
config.yml
File: Before running the application, create aconfig.yml
file in the/config
directory of your Docker container. You can use the config.yml.sample as a template. -
Run the Application: Use Docker Compose to build and run the application:
docker-compose up --build
The web interface will now be available at
http://localhost:3000
. -
Access the Web UI: Open your web browser and navigate to
http://localhost:3000
to access the aura web interface.
Note: Ensure that Docker is installed and running on your system before executing these commands. You can find more information about Docker installation on the official Docker website.