The infrastructure contains the following:
- Open ID Connect Mock Server - for login in
- Available at http://localhost:4011
- Requires Docker
- Create
oidc-user-config.json
fromoidc-user-config.json.template
- File should not be tracked in Git
- Fill in your login details like mail, name, password
Note: Commands are all executed inside a shell/CMD in the current folder. (Tip for windows users)
Use case | What to do? |
---|---|
Starting the infrastructure | docker compose up |
Stopping (and removing) the infrastructure | docker compose down |
(Re)Building the infrastructure e.g. after changes to the Dockerfiles |
docker compose build --pull |
See also docker compose --help
⚠ The containers don't automatically restart after a PC restart!
⚠ After a PC restart the infrastructure is still present but it's stopped.
In this case you have 2 options:
- start the existing infrastructure again (
docker compose up
) or - do a clean start by first removing (
docker compose down
) and then starting the infrastructure