mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-24 20:41:14 +00:00
16 lines
387 B
YAML
16 lines
387 B
YAML
|
version: "3"
|
||
|
|
||
|
services:
|
||
|
pwndrop:
|
||
|
container_name: pwndrop
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=100
|
||
|
- TZ=Europe/Berlin
|
||
|
- SECRET_PATH=pwndrop # secret path your admin mgmt interface will be
|
||
|
image: linuxserver/pwndrop:latest
|
||
|
restart: unless-stopped
|
||
|
volumes:
|
||
|
- /etc/localtime:/etc/localtime:ro
|
||
|
- /mnt/docker-volumes/pwndrop/config:/config
|