https://github.com/rgl/vaultwarden-docker-compose-example
example vaultwarden in docker compose
https://github.com/rgl/vaultwarden-docker-compose-example
bitwarden vaultwarden vaultwarden-docker
Last synced: 6 months ago
JSON representation
example vaultwarden in docker compose
- Host: GitHub
- URL: https://github.com/rgl/vaultwarden-docker-compose-example
- Owner: rgl
- Created: 2022-09-05T08:20:41.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-05T08:22:38.000Z (about 3 years ago)
- Last Synced: 2025-02-06T11:56:51.576Z (8 months ago)
- Topics: bitwarden, vaultwarden, vaultwarden-docker
- Homepage:
- Size: 1000 Bytes
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Start it up:
```bash
docker compose up
```Register the `alice@example.com` account at:
http://localhost:8080/#/register?email=alice@example.com
Login with the created credentials.
Under the `VERIFY EMAIL` widget, click the `Send Email` button.
Read (and respond) the confirmation email at:
http://localhost:8025
Repeat the process and register the `bob@example.com` account.
Create the `Example` organization with the `example-org@example.com` email at:
http://localhost:8080/#/create-organization
Add the `alice@example.com` to the `Example` organization.
After Alice responds to the email confirming she want to join the organization,
Bob must still confirm this in the `Organization` `Manage` `People` page, e.g., at:http://localhost:8080/#/organizations/225036f6-7089-4ad0-9668-cec2990ea94e/manage/people
Poke the database:
```bash
docker compose exec --user postgres postgres psql vaultwarden
```
```sql
-- show tables.
\d
-- show users.
select * from users;
```Destroy everything:
```bash
docker compose down --volumes --remove-orphans --timeout=0
```