4581a92781
Vaultwarden via STARTTLS (accepts self-signed shim cert); Mealie via plaintext
(NONE) — no accept-invalid-cert option, spike-validated mode. Compose files
reference injected ${SMTP_*}. README documents the pattern.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
68 lines
2.3 KiB
YAML
68 lines
2.3 KiB
YAML
# Vaultwarden - Password Manager (Bitwarden-compatible)
|
|
# Domain: ${SUBDOMAIN}.${DOMAIN}
|
|
# Database: None (SQLite, built-in)
|
|
# RAM: ~50MB (mem_limit: 256M) | Pi-compatible: Yes
|
|
#
|
|
# Environment variables:
|
|
# DOMAIN - Your domain (e.g., demo-felhom.eu)
|
|
# ADMIN_TOKEN - Admin panel token (auto-generated)
|
|
# SIGNUPS_ALLOWED - Set to "false" after creating your account(s)
|
|
#
|
|
# First-time setup:
|
|
# 1. Visit https://${SUBDOMAIN}.${DOMAIN} and create an account
|
|
# 2. Set SIGNUPS_ALLOWED=false via the controller
|
|
# 3. Admin panel at https://${SUBDOMAIN}.${DOMAIN}/admin (if ADMIN_TOKEN set)
|
|
#
|
|
# Clients:
|
|
# Use any Bitwarden client (desktop, mobile, browser extension)
|
|
# Set server URL to: https://${SUBDOMAIN}.${DOMAIN}
|
|
|
|
services:
|
|
vaultwarden:
|
|
image: vaultwarden/server:1.33.2-alpine
|
|
container_name: vaultwarden
|
|
restart: unless-stopped
|
|
environment:
|
|
- DOMAIN=https://${SUBDOMAIN}.${DOMAIN}
|
|
- SIGNUPS_ALLOWED=${SIGNUPS_ALLOWED:-true}
|
|
- ADMIN_TOKEN=${ADMIN_TOKEN:-}
|
|
- WEBSOCKET_ENABLED=true
|
|
- TZ=Europe/Budapest
|
|
# App-email (managed relay). Injected by the controller only when app-email is on
|
|
# (global + per-app); empty SMTP_HOST = Vaultwarden mail stays disabled. See .felhom.yml smtp_mapping.
|
|
- SMTP_HOST=${SMTP_HOST:-}
|
|
- SMTP_PORT=${SMTP_PORT:-587}
|
|
- SMTP_SECURITY=${SMTP_SECURITY:-off}
|
|
- SMTP_FROM=${SMTP_FROM:-}
|
|
- SMTP_FROM_NAME=${SMTP_FROM_NAME:-}
|
|
- SMTP_ACCEPT_INVALID_CERTS=${SMTP_ACCEPT_INVALID_CERTS:-false}
|
|
- SMTP_ACCEPT_INVALID_HOSTNAMES=${SMTP_ACCEPT_INVALID_HOSTNAMES:-false}
|
|
volumes:
|
|
- vaultwarden_data:/data
|
|
networks:
|
|
- traefik-public
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 256M
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--spider", "-q", "http://localhost:80/alive"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 10s
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.vaultwarden.rule=Host(`${SUBDOMAIN}.${DOMAIN}`)"
|
|
- "traefik.http.routers.vaultwarden.entrypoints=websecure"
|
|
- "traefik.http.routers.vaultwarden.tls=true"
|
|
- "traefik.http.routers.vaultwarden.tls.certresolver=letsencrypt"
|
|
- "traefik.http.services.vaultwarden.loadbalancer.server.port=80"
|
|
|
|
volumes:
|
|
vaultwarden_data:
|
|
|
|
networks:
|
|
traefik-public:
|
|
external: true
|