[DEV] update docker start

This commit is contained in:
Edouard DUPIN 2022-06-30 18:42:45 +02:00
parent 0d6f9c1749
commit ccc4777834
3 changed files with 26 additions and 2 deletions

View File

@ -31,9 +31,8 @@ services:
mem_limit: 100m
karauth_back_service:
build: .
restart: always
image: org.kar.auth
image: gitea.atria-soft.org/kangaroo-and-rabbit/karauth:latest
depends_on:
- karauth_db_service
ports:

24
readme.md Normal file
View File

@ -0,0 +1,24 @@
Karauth
=======
This repository manage 3 elements:
- The SSO backend: jersey REST server
- The SSO front-end: Angular login interface (KARSO)
- The adminitrator of the SSO: Angular adminitration interface of the SSO (KARAUTH)
To build the docker image:
--------------------------
```{.bash}
gitea.atria-soft.org/kangaroo-and-rabbit/karideo:latest
```
To start the service
--------------------
```{.bash}
docker-compose up -d
```
**Note:** you can manage a single Docker interface to manage all the KAR engine

View File

@ -200,6 +200,7 @@ export class SignInScene implements OnInit {
outUrl = `http://localhost:4203/sso/${this.ssoReturnData}/${rememberMe}/`;
} else if (applicationId === "karusic") {
outUrl = `http://192.168.1.156/karusic/sso/${this.ssoReturnData}/${rememberMe}/`;
}
return outUrl;
}