mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-05 00:00:32 +00:00
26 lines
858 B
YAML
26 lines
858 B
YAML
# Pwndrop is a self-deployable file hosting service for sending out red teaming
|
|
# payloads or securely sharing your private files over HTTP and WebDAV.
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
pwndrop:
|
|
image: ghcr.io/linuxserver/pwndrop
|
|
container_name: pwndrop
|
|
environment:
|
|
# for GroupID
|
|
- PUID=${PUID:-1024}
|
|
# for UserID
|
|
- PGID=${PGID:-100}
|
|
# Specify a timezone to use for example Europe/Amsterdam
|
|
- TZ=Europe/Amsterdam
|
|
# Secret path for admin access. Defaults to `/pwndrop`. This parameter only takes effect during initial install; it can later be changed in the web gui.
|
|
- SECRET_PATH=/pwndrop # optional
|
|
volumes:
|
|
# Contains all relevant configuration and data.
|
|
- ${BASEDIR:-/volume1/docker}/pwndrop/config:/config
|
|
ports:
|
|
# web gui
|
|
- 8080:8080
|
|
restart: unless-stopped
|