Files
mates-infra/docker-services/vaultwarden/docker-compose.yml
T
mates 444191d16d feat: initial infra repo
- docker-services: 14 generic compose templates (portainer, npm, vaultwarden, gitea, jotty, nextcloud-aio, rustdesk, audiobookshelf, calibre-web, plex, erugo, jswiki, speedtest, watchtower)
- install-scripts: bash scripts for Ubuntu server bootstrap, docker, portainer, npm, backup, restore
- ansible: 4 playbooks (bootstrap, deploy-services, update-services, security-hardening) + roles skeleton
- hermes-install: Hermes CLI setup on macOS
- macos-setup: Brewfile + osx-defaults + fish-config
- home-nas-tools: metadata index for NAS projects (no binaries)
- docs: architecture, security, contributing
- README, LICENSE (MIT), .gitignore
2026-08-01 16:25:58 +02:00

42 lines
918 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Vaultwarden kompatibilní Bitwarden server
services:
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
restart: unless-stopped
ports:
- "2999:80"
volumes:
- ./data:/data
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Prague
- DOMAIN=https://CHANGE_ME
- ROCKET_PORT=80
- SIGNUPS_ALLOWED=true
- INVITATIONS_ALLOWED=false
- SHOW_PASSWORD_HINT=false
- LOG_LEVEL=warn
- EXTENDED_LOGGING=true
- RUST_BACKTRACE=1
networks:
- vaultwarden_net
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:80/alive"]
interval: 30s
timeout: 10s
retries: 3
start_period: 30s
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"
networks:
vaultwarden_net:
name: vaultwarden_default
driver: bridge