Initial commit

This commit is contained in:
2026-05-30 22:48:53 -03:00
commit eacdd18165
35 changed files with 828 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
- https://plugins.jenkins.io/bitwarden-credentials-provider/#plugin-content-getting-started
- after setting things up, it's possible that jenkins shows this in the logs:
```
java.lang.IllegalStateException: Bitwarden CLI is not installed and could not be downloaded automatically. If on an unsupported architecture, please install it manually and set the path in the Jenkins configuration.
```

View File

@@ -0,0 +1,25 @@
services:
vaultwarden:
image: 'vaultwarden/server:latest'
environment:
- SERVICE_URL_VAULTWARDEN
- 'DOMAIN=${SERVICE_URL_VAULTWARDEN}'
- 'DATABASE_URL=${VAULTWARDEN_DB_URL:-data/db.sqlite3}'
- 'SIGNUPS_ALLOWED=true' # change to 'false' eventually
- 'INVITATIONS_ALLOWED=false'
- 'ADMIN_TOKEN=${SERVICE_PASSWORD_64_ADMIN}'
- IP_HEADER=X-Forwarded-For
- 'PUSH_ENABLED=${PUSH_ENABLED:-false}'
- 'PUSH_INSTALLATION_ID=${PUSH_SERVICE_ID}'
- 'PUSH_INSTALLATION_KEY=${PUSH_SERVICE_KEY}'
volumes:
- 'vaultwarden-data:/data'
healthcheck:
test:
- CMD
- curl
- '-f'
- 'http://127.0.0.1:80'
interval: 2s
timeout: 10s
retries: 15