Some checks failed
Deployment Verification / deploy-and-test (push) Failing after 29s
20 lines
536 B
YAML
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 |