Dockerfile Installation
To install aura using a Dockerfile, 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
-
Build the Docker Image: Use the following command to build the Docker image:
docker build -t aura .
-
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
-
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.