How to run Weavy Server in a docker container?
Asked
Active
Viewed 67 times
2 Answers
1
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.

lajjne
- 699
- 5
- 15
-1
/weavy-server
- 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.

Daniel Lihm
- 1
- 1