Keycoak:创建Docker容器时导入领域

bt1cpqcv  于 2023-01-04  发布在  Docker
关注(0)|答案(2)|浏览(112)

我为Keycloak和Postgres创建了一个docker-compose配置,运行良好。现在,我已经在real-export.json中导出了配置,以便使用这些配置重新启动Keycloak。不幸的是,Keycloak容器没有按预期工作。
原始停靠-合成:

version: '3.1'
services:
  postgres:
      image: postgres
      volumes:
        - ~/docker/volumes/keycloak-db:/var/lib/postgresql/data
      environment:
        POSTGRES_DB: keycloak
        POSTGRES_USER: keycloak
        POSTGRES_PASSWORD: ${KEYCLOAK_DB_PASS}
  keycloak:
      image: mihaibob/keycloak:14.0.0
      environment:
        DB_VENDOR: POSTGRES
        DB_ADDR: postgres
        DB_DATABASE: keycloak
        DB_USER: keycloak
        DB_SCHEMA: public
        DB_PASSWORD: ${KEYCLOAK_DB_PASS}
        KEYCLOAK_USER: admin
        KEYCLOAK_PASSWORD: ${KEYCLOAK_PASS}
        # Uncomment the line below if you want to specify JDBC parameters. The parameter below is just an example, and it shouldn't be used in production without knowledge. It is highly recommended that you read the PostgreSQL JDBC driver documentation in order to use it.
        #JDBC_PARAMS: "ssl=true"
      ports:
        - 8080:8080
      depends_on:
        - postgres

新的Docker-compose以导入配置:

version: '3.1'
services:

   postgres:
      image: postgres
      container_name: postgres
      environment:
        POSTGRES_DB: keycloak
        POSTGRES_USER: keycloak
        POSTGRES_PASSWORD: ${KEYCLOAK_DB_PASS}

   keycloak:
      image: mihaibob/keycloak:14.0.0
      volumes:
        - ./realm-export.json:/tmp/realm-export.json
      environment:
        DB_VENDOR: POSTGRES
        DB_ADDR: postgres
        DB_DATABASE: keycloak
        DB_USER: keycloak
        DB_SCHEMA: public
        DB_PASSWORD: ${KEYCLOAK_DB_PASS}
        KEYCLOAK_USER: admin
        KEYCLOAK_PASSWORD: ${KEYCLOAK_PASS}
        KEYCLOAK_MIGRATION_ACTION: IMPORT
        KEYCLOAK_IMPORT: /tmp/realm-export.json
        # Uncomment the line below if you want to specify JDBC parameters. The parameter below is just an example, and it shouldn't be used in production without knowledge. It is highly recommended that you read the PostgreSQL JDBC driver documentation in order to use it.
        #JDBC_PARAMS: "ssl=true"
      ports:
        - 9080:8080
      depends_on:
        - postgres

Keycloak容器终止,并显示以下日志:

OpenJDK Server VM warning: No monotonic clock was available - timed services may be adversely affected if the time-of-day clock changes

Added 'admin' to '/opt/jboss/keycloak/standalone/configuration/keycloak-add-user.json', restart server to load user

-b 0.0.0.0

=========================================================================


  Using PostgreSQL database


=========================================================================

对每一个想法都心存感激。

9gm1akwq

9gm1akwq1#

尝试使用绝对路径进行卷装载

djmepvbi

djmepvbi2#

我会推荐一个更好的keycloak图像供应商,在使用了一段时间JBoss的keycloak之后,我最终选择了quay版本
此处为:https://www.keycloak.org/server/containers
挂载包含域的json文件的卷并使用--import-realm选项更新CMD非常简单。

相关问题