vaultwarden/docker-compose.yml
Robert Kaussow ccd9bb22df
All checks were successful
continuous-integration/drone/push Build is passing
remove microbadger and add minimal docs
2020-02-01 17:54:03 +01:00

27 lines
541 B
YAML

---
version: '3'
services:
postgres:
container_name: bitwardenrs_postgres
image: postgres
environment:
POSTGRES_DB: bitwarden
POSTGRES_PASSWORD: pass
POSTGRES_USER: user
bitwardenrs:
container_name: bitwardenrs
image: xoxys/bitwardenrs:latest
depends_on:
- postgres
ports:
- "80:8080"
environment:
BITWARDENRS_DATABASE_URL: postgresql://user:pass@bitwardenrs_postgres:5432/bitwarden
BITWARDENRS_ADMIN_TOKEN: test
volumes:
bitwardenrs_data:
driver: local