Installation
🐋 Docker
Run Voux with Docker.
Docker Run
You can run Voux directly with Docker using a single command:
docker run -d \
--name voux \
-p 8787:8787 \
-e ADMIN_USERNAME=admin \
-e ADMIN_PASSWORD=change-this-password \
-v $(pwd)/data:/app/data \
ghcr.io/quintixlabs/voux/voux:latestRead this first
You must set ADMIN_USERNAME and ADMIN_PASSWORD to your own values.
Do not leave the example credentials.
Docker Compose
If you prefer Docker Compose, this is the simpler and recommended option for long running setups.
Create a docker-compose.yml file:
services:
voux:
image: ghcr.io/quintixlabs/voux/voux:latest
container_name: voux # remove this if u wanna run more than 1 container
ports:
- "8787:8787"
environment:
- ADMIN_USERNAME=admin
- ADMIN_PASSWORD=change-this-password
volumes:
- ./data:/app/dataRead this first
You must set ADMIN_USERNAME and ADMIN_PASSWORD to your own values.
Do not leave the example credentials.
Then start it:
docker compose up -d
Edit on GitHub
Last updated on