mirror of
https://github.com/abhilesh/self-hosted-docker-setups.git
synced 2026-03-03 02:27:00 +00:00
16 lines
606 B
YAML
16 lines
606 B
YAML
services:
|
|
pairdrop:
|
|
image: lscr.io/linuxserver/pairdrop:latest
|
|
container_name: pairdrop
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Etc/UTC # Change this
|
|
- RATE_LIMIT=false # optional
|
|
- WS_FALLBACK=false # optional
|
|
- RTC_CONFIG= # optional
|
|
- DEBUG_MODE=false # optional
|
|
ports:
|
|
- 3000:3000 # Change this <external-ip:internal-ip>
|
|
restart: unless-stopped
|