Last active 1690303948

local file sharing in your browser. Inspired by Apple's Airdrop. Create Reverse proxy to local port http//:localhost:81

gistfile1.txt Raw
1version: "3"
2services:
3 snapdrop:
4 image: lscr.io/linuxserver/snapdrop:latest
5 container_name: snapdrop
6 environment:
7 - PUID=1024
8 - PGID=100
9 - TZ=Europe/Stockholm
10 volumes:
11 - /volume1/docker/snapdrop:/config
12 ports:
13 - 81:80
14 - 344:443
15 restart: unless-stopped