mirror of
https://github.com/weslambert/velociraptor-docker.git
synced 2025-09-22 21:11:14 +00:00
22 lines
547 B
YAML
22 lines
547 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}
|
|
- VELOX_SERVER_URL=${VELOX_SERVER_URL}
|
|
- VELOX_FRONTEND_HOSTNAME=${VELOX_FRONTEND_HOSTNAME}
|
|
ports:
|
|
- "8000:8000"
|
|
- "8001:8001"
|
|
- "8889:8889"
|
|
restart: unless-stopped
|