Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 706 Bytes

File metadata and controls

40 lines (30 loc) · 706 Bytes

Docker Setup

Install Docker

curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh
sudo usermod -aG docker $USER

Run with Docker Compose (recommended)

make up        # Start
make tor       # Get .onion address
make status    # Check status
make down      # Stop
make clean     # Completely remove container

Content is stored at ~/nonograph/content.

Access: http://localhost:8009

Run manually

mkdir -p ~/nonograph/content
sudo docker run -d \
  -p 8009:8009 \
  -v ~/nonograph/content:/app/content \
  --name nonograph \
  ghcr.io/du82/nonograph:latest

Then check logs for your .onion address:

sudo docker logs nonograph