Robert Kaussow
eae6fb5398
All checks were successful
continuous-integration/drone/tag Build is passing
29 lines
551 B
YAML
29 lines
551 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: thegeeklab/bitwardenrs
|
|
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
|