Monday, February 28, 2022

Deploy run Bitwarden server On Docker Compose

 in This Tutorial you will learn " How To Run Bitwarden Password Manager in Docker Container

Docker is a software platform that allows you to build, test, and deploy applications quickly.
Bitwarden is an integrated open source password management solution for individuals, teams, and business organizations.
_________________________________________________________________________________________
Server - Os:  Ubuntu 20.04.3 LTS 64Bit        | IP -192.168.1.80            |Hostname -  ubuntu.example.com
_________________________________________________________________________________________
lsb_release -d ; hostname -I ; hostname
mkdir bitwarden && cd bitwarden
touch docker-compose.yml ; nano docker-compose.yml
# docker-compose.yml
version: '3'

services:
  bitwarden:
    image: bitwardenrs/server
    restart: always
    ports:
      - 8000:80
    volumes:
      - ./bw-data:/data
    environment:
      WEBSOCKET_ENABLED: 'true' # Required to use websockets
      SIGNUPS_ALLOWED: 'true'   # set to false to disable signups
docker-compose up -d
docker ps
http://127.0.0.1:8000/ |mail@example.com/iE7PtnczJcXKTT2
_________________________________________________________________________________________

No comments:

Post a Comment