Pull the docker container:
docker pull dockerweavy/weavy-server
Create a directory to store your Weavy Server configuration and data:
mkdir -p /path/to/weavyserverdata
Run the container, mapping the configuration and data directory to a folder on your host machine:
docker run -d –name weavyserver -v /path/to/weavyserverdata:/opt/weavy-server -p 8080:8080 dockerweavy/weavy-server
Once the container is running, you can access the Weavy Server web interface at http://localhost:8080.
Running Weavy in a Docker container is currently not supported. You could probably create your own Docker image and make it work, but it’s not officially supported.
2
Answers
/weavy-server
docker pull dockerweavy/weavy-server
mkdir -p /path/to/weavyserverdata
docker run -d –name weavyserver -v /path/to/weavyserverdata:/opt/weavy-server -p 8080:8080 dockerweavy/weavy-server
Running Weavy in a Docker container is currently not supported. You could probably create your own Docker image and make it work, but it’s not officially supported.