mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-27 22:44:24 -04:00
whoops
This commit is contained in:
parent
cc93ac6f6f
commit
207084a36c
2 changed files with 1 additions and 1 deletions
36
common/users/docker/vw/docker_compose.yaml
Normal file
36
common/users/docker/vw/docker_compose.yaml
Normal file
|
@ -0,0 +1,36 @@
|
|||
version: '3'
|
||||
|
||||
services:
|
||||
vaultwarden:
|
||||
image: vaultwarden/server:latest
|
||||
env_file: ./vw.env
|
||||
container_name: vaultwarden
|
||||
restart: always
|
||||
ports:
|
||||
- 3231:80
|
||||
volumes:
|
||||
- vw-data:/data
|
||||
|
||||
backup:
|
||||
image: ttionya/vaultwarden-backup:latest
|
||||
restart: always
|
||||
env_file: ./backup.env
|
||||
volumes:
|
||||
- vw-data:/bitwarden/data/
|
||||
- vw-rc-data:/config/
|
||||
# - /path/to/env:/.env
|
||||
|
||||
volumes:
|
||||
vw-data:
|
||||
# Specify the name of the volume where you save the vaultwarden data,
|
||||
# use vaultwarden-data for new users
|
||||
# and bitwardenrs-data for migrated users
|
||||
name: vw-data
|
||||
# name: bitwardenrs-data
|
||||
vw-rc-data:
|
||||
external: true
|
||||
# Specify the name of the volume where you save the rclone configuration,
|
||||
# use vaultwarden-rclone-data for new users
|
||||
# and bitwardenrs-rclone-data for migrated users
|
||||
name: vw-rc-data
|
||||
# name: bitwardenrs-rclone-data
|
Loading…
Add table
Add a link
Reference in a new issue