Merly Mentor Assets serves static files for the Merly Mentor App, supporting efficient delivery.
868
The merlyai/merly-mentor-assets service manages static asset files used by other services, such as merlyai/merly-mentor-daemon. It mounts a volume containing these assets for other services to access.
Pull the Docker Image:
To get the latest version of the image, run:
docker pull merlyai/merly-mentor-assets:latest
Create a Volume for Asset Data:
Create the volume where asset data will be stored:
docker volume create assets-data
Run the Docker Container:
After pulling the image and creating the volume, start the container:
docker run -d --name merly-assets \
-v assets-data:/app/.assets \
merlyai/merly-mentor-assets:latest
Access the Asset Data:
The static asset files will be accessible at /app/.assets. Other services can use this data by mounting the volume.
merlyai/merly-mentor-daemon service.Content type
Image
Digest
sha256:a5ecc44c6…
Size
4.4 MB
Last updated
almost 2 years ago
docker pull merlyai/merly-mentor-assets