soc-fortress/Velociraptor/docker-compose.yml
hcornet 506716e703
Some checks failed
Deployment Verification / deploy-and-test (push) Failing after 29s
first sync
2025-03-04 07:59:21 +01:00

20 lines
536 B
YAML

################
# Velociraptor #
################
velociraptor:
container_name: velociraptor
image: wlambert/velociraptor
env_file: .env
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