You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
555 B
Bash

3 years ago
# [Snapdrop](https://github.com/RobinLinus/snapdrop) A local file sharing in
# your browser. Inspired by Apple's Airdrop.
3 years ago
source ./.env
docker run -d \
--name=snapdrop \
-e PUID=${PUID:-1024} `# for GroupID` \
-e PGID=${PGID:-100} `# for UserID` \
3 years ago
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
3 years ago
-p 80:80 `# http gui` \
-p 443:443 `# https gui` \
-v ${BASEDIR:-/volume1/docker}/snapdrop/config:/config `# Persistent configs and logs.` \
--restart unless-stopped \
ghcr.io/linuxserver/snapdrop