diff --git a/ValutWarden/docker-compose.yml b/ValutWarden/docker-compose.yml new file mode 100644 index 0000000..6383061 --- /dev/null +++ b/ValutWarden/docker-compose.yml @@ -0,0 +1,13 @@ +version: '3' + +services: + vaultwarden: + image: vaultwarden/server:latest + container_name: vaultwarden + ports: + - 85:80 + restart: always + environment: + DOMAIN: "https://vw.tff.digital" # Your domain; vaultwarden needs to know it's https to work properly with attachments + volumes: + - /home/nick/docker/vaultwarden/vw-data:/data \ No newline at end of file