Docker log show that abp need to login before start authentication server. Please advise. Thx.
Did Abp support dynamic menu based on user role? Scenarios,
The following is the docker-compose.yml file where dnf is the system name.
services:
dnf.httpapi.host:
image: ${DOCKER_REGISTRY-}dnfhttpapihost
container_name: dnf.httpapi.host
ports:
- "44326:44326"
- "4200:4200"
- "30080:80"
- "30443:443"
build:
context: .
dockerfile: src/DNF.HttpApi.Host/Dockerfile
depends_on:
- dnf.db
restart: on-failure
dnf.db:
image: "mcr.microsoft.com/mssql/server"
container_name: dnf.db
ports:
- "34330:1433"
restart: always
environment:
MSSQL_SA_PASSWORD: "123456"
SA_PASSWORD: "123456"
ACCEPT_EULA: "Y"
dnf.authserver:
image: ${DOCKER_REGISTRY-}dnfauthserver
container_name: dnf.authserver
ports:
- "44324:44324"
build:
context: .
dockerfile: src/DNF.AuthServer/Dockerfile
depends_on:
- dnf.db
restart: on-failure
redis:
image: redis
container_name: redis
ports:
- '6379:6379'
It can solved. Thx.
What organization I belong to? My colleague are on leave. I would like to get my organization master account to maintain the developer account. Thx.
Ok, I can login using the device flow. Thx.