Install Zenith using Docker
To install Zenith using Docker, follow these steps:
- Create Persistent Storage Volumes: Create Docker volumes to persist data such as configuration and uploaded files:
sh
docker volume create zenith-storage # config files and uploads
docker volume create zenith-modules # modules installled- Run the Docker Container: Use the following command to pull and run the Zenith Docker container:
sh
docker run -d \
-p 3000:3000 \
--name zenith \
-v zenith-storage:/app/storage \
-v zenith-modules:/app/modules \
sidekickcoder/zenith:latest- Access the Application: Open your web browser and navigate to
http://localhost:3000to access the Zenith application and begin the setup.