mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-24 04:21:14 +00:00
52afaf7c3a
add missing port definitions
18 lines
442 B
YAML
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
|