Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 16 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading