Dockerfile Installation

To install aura using a Dockerfile, follow these steps:

  1. Clone the Repository: Start by cloning the aura repository from GitHub.

     git clone https://github.com/mediux-team/aura.git
     cd aura
    
  2. Create a config.yml File: Before building the Docker image, create a config.yml file in the root directory of the project. You can use the config.yml.sample as a template.

  3. Build the Docker Image: Use the following command to build the Docker image:

     docker build -t aura .
    
  4. Run the Docker Container (adjust the volume paths and ports as needed):

     docker run -d -p 3000:3000 -p 8888:8888 -v '/mnt/user/appdata/aura/':'/config':'rw' -v '/mnt/user/data/media/':'/data/media':'rw' aura
    
  5. Access the Web UI: Open your web browser and go to http://localhost:3000 to access the aura web interface.

Note: Make sure you have Docker installed on your system before executing these commands. You can check the official documentation for more details.