Sign inSign up

merlyai/merly-mentor-assets

By merlyai

Updated almost 2 years ago

Merly Mentor Assets serves static files for the Merly Mentor App, supporting efficient delivery.

Image
Machine learning & AI
0

868

merlyai/merly-mentor-assets repository overview

Overview:

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.

Prerequisites:
  • Docker installed on the host system.
How to Run the Service:
  1. Pull the Docker Image:

    To get the latest version of the image, run:

    docker pull merlyai/merly-mentor-assets:latest
    
  2. Create a Volume for Asset Data:

    Create the volume where asset data will be stored:

    docker volume create assets-data
    
  3. 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
    
  4. Access the Asset Data:

    The static asset files will be accessible at /app/.assets. Other services can use this data by mounting the volume.

Important Notes:
  • This service is typically used to provide assets for the merlyai/merly-mentor-daemon service.

Tag summary

Content type

Image

Digest

sha256:a5ecc44c6

Size

4.4 MB

Last updated

almost 2 years ago

docker pull merlyai/merly-mentor-assets