Initial commit
This commit is contained in:
8
services/vaultwarden/README.md
Normal file
8
services/vaultwarden/README.md
Normal 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.
|
||||
```
|
||||
|
||||
|
||||
25
services/vaultwarden/coolify.docker-compose.yml
Normal file
25
services/vaultwarden/coolify.docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user