cleanup | add includes for docker-compose files
All checks were successful
deploy-docs / build-and-deploy (push) Successful in 1m6s

This commit is contained in:
2026-03-30 03:41:38 +00:00
parent 94a63fb7ab
commit 85f2d3a9e0
11 changed files with 24 additions and 250 deletions

View File

@@ -16,29 +16,7 @@ deployment where running the official resource-heavy service might not be ideal.
## Docker Compose Example
```yaml
{{<include "/srv/configs/docker_compose/vaultwarden/docker-compose.yaml">}}
```
# vaultwarden -- https://github.com/dani-garcia/vaultwarden
---
services:
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
restart: unless-stopped
environment:
DOMAIN: "https://vaultwarden.wompmacho.com"
ROCKET_PORT: 80
ROCKET_ENV: production
volumes:
- vaultwarden-mount:/data/
ports:
- '9998:80'
- '9999:443'
volumes:
vaultwarden-mount:
name: vaultwarden-mount
driver_opts:
type: nfs
o: addr=truenas,nolock,soft,rw
device: :/mnt/store/vault/app/vaultwarden
```