Initial upload of configurations
This commit is contained in:
22
vaultwarden/docker-compose.yaml
Normal file
22
vaultwarden/docker-compose.yaml
Normal file
@@ -0,0 +1,22 @@
|
||||
version: '3.3'
|
||||
|
||||
services:
|
||||
vaultwarden:
|
||||
container_name: ${CONTAINER_NAME}
|
||||
image: 'vaultwarden/server:latest'
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ${HOME_DIR}/${CONTAINER_NAME}/:/data/
|
||||
environment:
|
||||
- SIGNUPS_ALLOWED=${SIGNUP_ALLOWED}
|
||||
- ADMIN_TOKEN=${TOKEN}
|
||||
- WEB_VAULT_ENABLED=${WEBVAULT_ENABLED}
|
||||
- TZ=${TIMEZONE}
|
||||
ports:
|
||||
- ${PORT_HTTP}:80
|
||||
env_file:
|
||||
- path: ./vaultwarden.env
|
||||
required: true
|
||||
- path: ../global.env
|
||||
required: true
|
||||
|
||||
12
vaultwarden/vaultwarden.env
Normal file
12
vaultwarden/vaultwarden.env
Normal file
@@ -0,0 +1,12 @@
|
||||
CONTAINER_NAME=vaultwarden
|
||||
PORT_HTTP=8082
|
||||
WEBVAULT_ENABLED=true
|
||||
|
||||
#allow new users to sign up and create an account (should be disabled after initial setup)
|
||||
SIGNUP_ALLOWED=false
|
||||
|
||||
#Token for the admin interface, preferably use a long random string
|
||||
#One option is to use 'openssl rand -base64 48'
|
||||
#If not set, the admin panel is disabled
|
||||
TOKEN=
|
||||
|
||||
Reference in New Issue
Block a user