Aktueller Stand!

This commit is contained in:
2026-05-15 07:04:12 +00:00
parent 315eb5375f
commit ccebb8ef41
5 changed files with 124 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
services:
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
restart: unless-stopped
env_file:
- .env
environment:
- TZ=Europe/Berlin
- DOMAIN=https://vault.thodirr.net
- SIGNUPS_ALLOWED=false
- ADMIN_TOKEN=${ADMIN_TOKEN}
- DOMAIN=https://vault.thodirr.net
volumes:
- /docker/vaultwarden/data:/data
networks:
- vps_network
deploy:
resources:
limits:
cpus: '0.5'
memory: 256M
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:80"]
interval: 30s
timeout: 10s
retries: 5
start_period: 30s
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
networks:
vps_network:
external: true
name: vps_network