Add Dockerfile and devcontainer

This commit is contained in:
thePR0M3TH3AN
2025-06-19 11:35:23 -04:00
parent 0e4d5a3979
commit 5c5b25837e
3 changed files with 50 additions and 0 deletions

16
docs/docker.md Normal file
View File

@@ -0,0 +1,16 @@
# Docker Usage
A prebuilt image containing Tor, OnionShare and the `voxvera` CLI is published to
`ghcr.io/voxvera/voxvera`.
```bash
# pull the image
docker pull ghcr.io/voxvera/voxvera:latest
# run voxvera quickstart with flyers stored in ./flyers
mkdir -p flyers
docker run -it --rm -v "$(pwd)/flyers:/flyers" ghcr.io/voxvera/voxvera
```
The container uses `/flyers` as the working directory and runs `voxvera quickstart`
by default. All generated flyer files will appear in the mounted `flyers` folder.