update fail2ban-exporter, vaultwarden
This commit is contained in:
@@ -1,8 +1,9 @@
|
|||||||
---
|
---
|
||||||
services:
|
services:
|
||||||
exporter:
|
exporter:
|
||||||
image: registry.gitlab.com/hectorjsmith/fail2ban-prometheus-exporter:latest
|
image: registry.gitlab.com/hctrdev/fail2ban-prometheus-exporter:latest
|
||||||
volumes:
|
volumes:
|
||||||
- /var/run/fail2ban/:/var/run/fail2ban:ro
|
- /var/run/fail2ban/:/var/run/fail2ban:ro
|
||||||
ports:
|
ports:
|
||||||
- "9191:9191"
|
- "9191:9191"
|
||||||
|
restart: 'always'
|
||||||
|
|||||||
@@ -1,50 +0,0 @@
|
|||||||
# dependencies
|
|
||||||
/node_modules
|
|
||||||
/.pnp
|
|
||||||
.pnp.js
|
|
||||||
|
|
||||||
# testing
|
|
||||||
/coverage
|
|
||||||
|
|
||||||
# next.js
|
|
||||||
/.next/
|
|
||||||
/out/
|
|
||||||
|
|
||||||
# production
|
|
||||||
/build
|
|
||||||
|
|
||||||
# misc
|
|
||||||
.DS_Store
|
|
||||||
*.pem
|
|
||||||
|
|
||||||
# debug
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
.pnpm-debug.log*
|
|
||||||
|
|
||||||
# env files
|
|
||||||
.env*.local
|
|
||||||
.env
|
|
||||||
|
|
||||||
# vercel
|
|
||||||
.vercel
|
|
||||||
|
|
||||||
# typescript
|
|
||||||
*.tsbuildinfo
|
|
||||||
next-env.d.ts
|
|
||||||
|
|
||||||
# generated files and folders
|
|
||||||
/data
|
|
||||||
.idea
|
|
||||||
prisma/dev.db
|
|
||||||
|
|
||||||
# tests
|
|
||||||
/tests
|
|
||||||
/test-results/
|
|
||||||
/playwright-report/
|
|
||||||
/playwright/.cache/
|
|
||||||
|
|
||||||
# docker
|
|
||||||
pgdata
|
|
||||||
certificates
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
version: '3.4'
|
|
||||||
services:
|
|
||||||
netbox:
|
|
||||||
ports:
|
|
||||||
- "8000:8080"
|
|
||||||
# If you want the Nginx unit status page visible from the
|
|
||||||
# outside of the container add the following port mapping:
|
|
||||||
# - "8001:8081"
|
|
||||||
# healthcheck:
|
|
||||||
# Time for which the health check can fail after the container is started.
|
|
||||||
# This depends mostly on the performance of your database. On the first start,
|
|
||||||
# when all tables need to be created the start_period should be higher than on
|
|
||||||
# subsequent starts. For the first start after major version upgrades of NetBox
|
|
||||||
# the start_period might also need to be set higher.
|
|
||||||
# Default value in our docker-compose.yml is 60s
|
|
||||||
# start_period: 90s
|
|
||||||
# environment:
|
|
||||||
# SKIP_SUPERUSER: "false"
|
|
||||||
# SUPERUSER_API_TOKEN: ""
|
|
||||||
# SUPERUSER_EMAIL: ""
|
|
||||||
# SUPERUSER_NAME: ""
|
|
||||||
# SUPERUSER_PASSWORD: ""
|
|
||||||
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
consume/
|
|
||||||
export/
|
|
||||||
docker-compose.env
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
data/
|
|
||||||
@@ -12,11 +12,17 @@ services:
|
|||||||
DOMAIN: "${DOMAIN}"
|
DOMAIN: "${DOMAIN}"
|
||||||
SHOW_PASSWORD_HINT: "false"
|
SHOW_PASSWORD_HINT: "false"
|
||||||
USE_SYSLOG: "false"
|
USE_SYSLOG: "false"
|
||||||
LOG_FILE: /data/logs/vaultwarden.log
|
LOG_FILE: /var/log/vaultwarden/vaultwarden.log
|
||||||
LOG_LEVEL: "warn"
|
LOG_LEVEL: "debug"
|
||||||
EXTENDED_LOGGING: "true"
|
EXTENDED_LOGGING: "true"
|
||||||
volumes:
|
volumes:
|
||||||
- /root/docker/vault/data/:/data
|
- ./data/:/data
|
||||||
|
- /var/log/vaultwarden:/var/log/vaultwarden
|
||||||
ports:
|
ports:
|
||||||
- 127.0.0.1:8090:80
|
- 8090:80
|
||||||
- 127.0.0.1:3012:3012
|
- 3012:3012
|
||||||
|
logging:
|
||||||
|
driver: json-file
|
||||||
|
options:
|
||||||
|
max-size: "10m"
|
||||||
|
max-file: "3"
|
||||||
|
|||||||
Reference in New Issue
Block a user