You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
902 B
39 lines
902 B
version: '3'
|
|
|
|
services:
|
|
waitfordb:
|
|
image: dadarek/wait-for-dependencies
|
|
depends_on:
|
|
- postgres
|
|
command: postgres:5432
|
|
|
|
bitwarden:
|
|
image: vaultwarden/server:latest
|
|
depends_on:
|
|
- postgres
|
|
- waitfordb
|
|
restart: always
|
|
volumes:
|
|
- bw-data:/data
|
|
ports:
|
|
- 3011:80
|
|
- 3012:3012
|
|
environment:
|
|
WEBSOCKET_ENABLED: 'true' # Required to use websockets
|
|
SIGNUPS_ALLOWED: 'false' # set to false to disable signups
|
|
ADMIN_TOKEN: ${ADMIN_TOKEN}
|
|
DATABASE_URL: postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres/${POSTGRES_DB}
|
|
|
|
postgres:
|
|
image: postgres:12.3-alpine
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: ${POSTGRES_USER}
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
|
POSTGRES_DB: ${POSTGRES_DB}
|
|
volumes:
|
|
- postgres:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
bw-data:
|
|
postgres:
|