docker-bits/lsio/pwndrop/docker-compose.yaml

27 lines
906 B
YAML
Raw Normal View History

2021-04-21 00:55:42 +00:00
# [Pwndrop](https://github.com/kgretzky/pwndrop) is a self-deployable file
# hosting service for sending out red teaming payloads or securely sharing your
# private files over HTTP and WebDAV.
2021-04-10 10:16:29 +00:00
---
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
2021-04-13 00:58:58 +00:00
- TZ=${TZ:-Europe/Amsterdam}
2021-04-10 10:16:29 +00:00
# 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