0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-06-15 18:38:21 +02:00

Simplify by using the same path, this will impact build caching tough

Felix Eckhofer 2023-07-13 12:48:54 +02:00
parent c5f90fe3df
commit 6134c842b5

@ -6,12 +6,12 @@ SSO support for Vaultwarden is currently [in development](https://github.com/dan
## Setup
- Checkout the SSO branch, note the path
- Create a `docker-compose.yml` somewhere with the following contents (replace the path as needed):
- Checkout the SSO branch
- Create `docker-compose.yml` with the following contents:
~~~
services:
vaultwarden:
build: /path/to/vaultwarden-source-with-sso
build: .
environment:
DOMAIN: "http://localhost:8000"
I_REALLY_WANT_VOLATILE_STORAGE: "true"
@ -30,10 +30,12 @@ services:
~~~
- Add `auth.test` to your systems host file:
`echo "127.0.0.1 auth.test" | sudo tee -a /etc/hosts`
- Build vaultwarden:
`docker compose build`
## Testing
- Start the services: `cd /path/to/docker-compose.yml && docker compose up --build`
- Start the services: `docker compose up`
- Go to [http://localhost:8000/#/sso](http://localhost:8000/#/sso), enter any string as identifier, click "Log in".
- On the Mock Auth2 Server Sign-in-Page, enter any string for user/subject and add the email you want to test in the claims field like so:
`{"email": "user@example.com"}`