mirror of
https://github.com/PR0M3TH3AN/VoxVera.git
synced 2025-09-08 23:18:42 +00:00
17 lines
509 B
Markdown
17 lines
509 B
Markdown
# 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.
|