forked from external-repos/velociraptor-docker
20 lines
441 B
YAML
20 lines
441 B
YAML
version: '2'
|
|
services:
|
|
velociraptor:
|
|
container_name: velociraptor
|
|
#image: wlambert/velociraptor
|
|
build:
|
|
context: ./
|
|
dockerfile: Dockerfile
|
|
volumes:
|
|
- ./velociraptor:/velociraptor/:rw
|
|
environment:
|
|
- VELOX_USER=${VELOX_USER}
|
|
- VELOX_PASSWORD=${VELOX_PASSWORD}
|
|
- VELOX_ROLE=${VELOX_ROLE}
|
|
ports:
|
|
- "8000:8000"
|
|
- "8001:8001"
|
|
- "8889:8889"
|
|
restart: unless-stopped
|