Update 01-en.md

This commit is contained in:
Christoph 2024-01-30 07:42:38 +01:00 committed by GitHub
parent 592f297007
commit 5be9d03b1a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,22 +1,23 @@
---
title: Installing Bitwarden Server with Docker
description: Learn how to install Bitwarden server with docker and enable admin page
title: Installing Vaultwarden (Bitwarden compatible) Server with Docker
description: Learn how to setup Vaultwarden using Docker and
updated_at: 2023-11-19
slug: bitwardeb-install
slug: vaultwarden
author_name: Artem Greis
author_url: https://github.com/artygreis
author_image:
author_bio:
tags: [bitwarden, linux]
tags: [bitwarden, vaultwarden, linux]
netcup_product_url: https://www.netcup.eu/bestellen/produkt.php?produkt=2902
language: en
available_languages: en
---
# Introduction
This tutorial explains how to install the Bitwarden server on a virtual server with Docker and how to enable admin page. Bitwarden is used to securely store keys, passwords and confidential information. Storing data on your own server avoids data loss.
This tutorial explains how to setup a Vaultwarden server on a virtual server with Docker and how to enable Admin page. Vaultwarden is a Bitwarden compatible solution written in Rust and is used to securely store keys, passwords and confidential information. Storing data on your own server avoids data loss.
# Requirements
* Docker
* Ubuntu 22.04
@ -31,7 +32,7 @@ If the version is shown, then you can continue further.
docker pull vaultwarden/server:latest
```
# Step 3 - Get token for admin page
# Step 3 - Get token for Admin page
```sh
openssl rand -base64 48
```
@ -43,10 +44,11 @@ docker run -d --name vaultwarden -e ADMIN_TOKEN={token_get_on_step_3} -v /vw-dat
```
- '**vw-data**' - folder for save data on disk
- '**80**' (on the left) - local port, you can change
# Conclusion
Now you can go to the address localhost:port in your browser.
For admin page: localhost:port/admin and then use token from step 3.
# Conclusion
Now you can go to the address localhost:port in your browser to access the Admin panel.
For Admin page: localhost:port/admin and then use token from step 3.
That's all.