diff --git a/README.md b/README.md index 281b8e2..7e4babe 100644 --- a/README.md +++ b/README.md @@ -29,23 +29,32 @@ Or follow: https://support.plex.tv/articles/204059436-finding-an-authentication- python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())" ``` -Save the output — you'll need it for the `ENCRYPTION_KEY` variable. +Save the output — you'll need it for the `ENCRYPTION_KEY` variable below. -### 3. Configure +### 3. Run ```bash -cp .env.example .env -# Edit .env with your PLEX_URL, PLEX_TOKEN, and ENCRYPTION_KEY +docker run -d \ + --name plexgeo \ + --restart unless-stopped \ + -p 7842:7842 \ + -v plexgeo_data:/data \ + -e PLEX_URL=http://your-plex-ip:32400 \ + -e PLEX_TOKEN=your-plex-token \ + -e ENCRYPTION_KEY=your-generated-key \ + ghcr.io/inch-high/plexgeo:latest ``` -### 4. Run +Dashboard will be at **http://localhost:7842** + +Alternatively, using Docker Compose: ```bash +cp .env.example .env +# Edit .env with your PLEX_URL, PLEX_TOKEN, and ENCRYPTION_KEY docker compose up -d ``` -Dashboard will be at **http://localhost:7842** - --- ## Configuration