Add files

This commit is contained in:
BBaoVanC 2021-08-01 15:15:34 -05:00
parent 27be246b23
commit 3b498bce11
2 changed files with 63 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.env
data/

61
docker-compose.yml Normal file
View File

@ -0,0 +1,61 @@
version: '3'
services:
postgres:
image: postgres:latest
environment:
- POSTGRES_USER=bitwarden
- POSTGRES_PASSWORD
- POSTGRES_DB=bitwardendb
volumes:
- ./data/postgres:/var/lib/postgresql/data/
restart: always
healthcheck:
#test: ["CMD-SHELL", "pg_isready -U bitwarden"]
test: pg_isready -U bitwarden -d bitwardendb
interval: 10s
timeout: 5s
retries: 5
vaultwarden:
image: vaultwarden/server:latest
restart: always
ports:
- 127.0.0.1:81:80
- 127.0.0.1:3012:3012
environment:
- WEBSOCKET_ENABLED=true # Enable WebSocket notifications.
- DATABASE_URL=postgresql://bitwarden:${POSTGRES_PASSWORD}@postgres:5432/bitwardendb
#- ADMIN_TOKEN
volumes:
- ./data/vaultwarden:/data
depends_on:
postgres:
condition: service_healthy
borgmatic:
image: b3vis/borgmatic:latest
restart: always
volumes:
- ./data/vaultwarden:/mnt/source/vw-data:ro
- ./data/borgmatic/etc:/etc/borgmatic.d:Z
- ./data/borgmatic/state:/root/.config/borg:Z
- ./data/borgmatic/ssh:/root/.ssh:Z
environment:
- TZ=America/Chicago
- BORG_PASSPHRASE
depends_on:
postgres:
condition: service_healthy
vaultwarden:
condition: service_healthy
#pgadmin:
# image: dpage/pgadmin4:latest
# environment:
# - PGADMIN_DEFAULT_EMAIL
# - PGADMIN_DEFAULT_PASSWORD
# ports:
# - 8889:80
# depends_on:
# - postgres