Docker Desktop installation
The DataRamen Docker image is distributed via GitHub Container Registry and can be run locally using Docker Desktop.
Note: This guide covers local installation with Docker Desktop. For remote or self-hosted Docker deployments, refer to the Docker installation guide instead.
Prerequisites
Section titled “Prerequisites”Installation steps
Section titled “Installation steps”Start by pulling the DataRamen image from the container registry:
docker pull ghcr.io/oleksandrdemian/dataramen:latestCreate persistent volume
Section titled “Create persistent volume”To retain data across container updates, all DataRamen instances — regardless of image version — should mount the same volume.
docker volume create dataramen-volumeRun the container
Section titled “Run the container”Start DataRamen with the persistent volume attached:
docker run -v dataramen-volume:/data -d -p 4466:3000 --name DataRamen ghcr.io/oleksandrdemian/dataramenThis starts a new container named DataRamen on port 4466 in detached mode.