29 lines
553 B
YAML
29 lines
553 B
YAML
---
|
|
version: '3'
|
|
|
|
services:
|
|
postgres:
|
|
container_name: 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"
|
|
volumes:
|
|
- data:/app/data
|
|
environment:
|
|
BITWARDENRS_DATABASE_URL: postgresql://user:pass@bitwardenrs_postgres:5432/bitwarden
|
|
BITWARDENRS_ADMIN_TOKEN: test
|
|
|
|
volumes:
|
|
data:
|
|
driver: local
|