Compose-Examples/examples/pwndrop/docker-compose.yml
LRVT 52afaf7c3a
Update docker-compose.yml
add missing port definitions
2023-03-24 16:51:31 +01:00

18 lines
442 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
ports:
- 8080:8080
volumes:
- /etc/localtime:/etc/localtime:ro
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/pwndrop/config:/config