+ harborguard
This commit is contained in:
parent
4a182c7fc0
commit
63b63fc7e7
1 changed files with 29 additions and 0 deletions
|
|
@ -1,5 +1,34 @@
|
|||
---
|
||||
services:
|
||||
harborguard:
|
||||
image: ghcr.io/harborguard/harborguard:latest
|
||||
container_name: harborguard
|
||||
environment:
|
||||
- MAX_CONCURRENT_SCANS=1
|
||||
- SCAN_TIMEOUT_MINUTES=15
|
||||
- ENABLED_SCANNERS=trivy,grype
|
||||
- LOG_LEVEL=error
|
||||
- CLEANUP_OLD_SCANS_DAYS=7
|
||||
ports:
|
||||
- "3000:3000/tcp"
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
|
||||
foundryvtt:
|
||||
image: felddy/foundryvtt:release
|
||||
environment:
|
||||
- FOUNDRY_USERNAME=${FOUNDRY_USERNAME}
|
||||
- FOUNDRY_PASSWORD=${FOUNDRY_PASSWORD}
|
||||
- UID=1000
|
||||
- GID=1000
|
||||
ports:
|
||||
- "30000:30000/tcp"
|
||||
volumes:
|
||||
- /config/foundry-data:/data
|
||||
env_file:
|
||||
- path: .env
|
||||
required: true
|
||||
|
||||
dashy:
|
||||
image: lissy93/dashy
|
||||
container_name: Dashy
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue