1. 19 Jun, 2019 1 commit
  2. 18 Jun, 2019 1 commit
    • xzxiaoshan's avatar
      support passing database, meta server info via system environment · 3bfed3c8
      xzxiaoshan authored
      docker-compose.yml sample:
      ------------------------------------------------------------------------------------------
      version: '3'
      services:
        apollo-portal:
          image: docker.io/xzxiaoshan/apollo-portal:1.4.0
          container_name: apollo-portal
          network_mode: "host"
          environment:
            SERVER_PORT: 5555
            # DataSource Info
            DS_URL: "jdbc:mysql://pro.shanhy.com:3306/ApolloPortalDB?characterEncoding=utf8"
            DS_USERNAME: "shanhy"
            DS_PASSWORD: "xzxiaoshan@123"
            # Environmental variable declaration (meta server url, different environments should have different meta server addresses)
            DEV_META: "http://dev.shanhy.com:6666"
            FAT_META: ""
            UAT_META: ""
            LPT_META: ""
            PRO_META: "http://pro.shanhy.com:6666"
          depends_on:
            - apollo-adminservice
          logging:
            driver: "json-file"
            options:
              max-size: "200k"
              max-file: "10"
      
        apollo-configservice:
          image: docker.io/xzxiaoshan/apollo-configservice:1.4.0
          container_name: apollo-configservice
          network_mode: "host"
          environment:
            SERVER_PORT: 6666
            # DataSource Info
            DS_URL: "jdbc:mysql://pro.shanhy.com:3306/ApolloPortalDB?characterEncoding=utf8"
            DS_USERNAME: "shanhy"
            DS_PASSWORD: "xzxiaoshan@123"
          logging:
            driver: "json-file"
            options:
              max-size: "200k"
              max-file: "10"
      
        apollo-adminservice:
          image: docker.io/xzxiaoshan/apollo-adminservice:1.4.0
          container_name: apollo-adminservice
          network_mode: "host"
          environment:
            SERVER_PORT: 6667
            # DataSource Info
            DS_URL: "jdbc:mysql://pro.shanhy.com:3306/ApolloPortalDB?characterEncoding=utf8"
            DS_USERNAME: "shanhy"
            DS_PASSWORD: "xzxiaoshan@123"
          depends_on:
            - apollo-configservice
          logging:
            driver: "json-file"
            options:
              max-size: "200k"
              max-file: "10"
      3bfed3c8
  3. 15 Jun, 2019 2 commits
    • Jason Song's avatar
      add known user · b84f5b3f
      Jason Song authored
      b84f5b3f
    • xzxiaoshan's avatar
      support setting server port from enviroment variables · 46ed5271
      xzxiaoshan authored
      1.将服务端口提取到docker run的 -e SERVER_PORT 可指定,在docker需要使用host网络时,可以不用修改代码指定端口,避免与宿主机上的原有端口占用冲突 (#2333)
      
      2.对docker CMD入口的startup.sh文件,增加可执行授权指令,防止在某些时候该文件被打包进入后没有执行权限的麻烦(已实际遇到,又回头重新打包)
      46ed5271
  4. 11 Jun, 2019 1 commit
  5. 09 Jun, 2019 2 commits
  6. 08 Jun, 2019 1 commit
  7. 07 Jun, 2019 4 commits
  8. 03 Jun, 2019 1 commit
  9. 01 Jun, 2019 1 commit
  10. 28 May, 2019 1 commit
  11. 25 May, 2019 2 commits
  12. 23 May, 2019 1 commit
  13. 21 May, 2019 2 commits
  14. 18 May, 2019 2 commits
  15. 16 May, 2019 1 commit
  16. 12 May, 2019 1 commit
  17. 10 May, 2019 1 commit
  18. 03 May, 2019 1 commit
  19. 02 May, 2019 1 commit
  20. 01 May, 2019 3 commits
  21. 27 Apr, 2019 3 commits
    • Jason Song's avatar
      add known users · 4f6221c5
      Jason Song authored
      4f6221c5
    • Jason Song's avatar
      Fixes #2162 · b8a7eada
      Jason Song authored
      For cases like #2162, there are other property source wrappers like jasypt, so we won't be able to decide whether to trigger this change or not.
      So it's better just to trigger it as it is idempotent.
      b8a7eada
    • Jason Song's avatar
      fix #2167 (#2172) · 05a3229e
      Jason Song authored
      05a3229e
  22. 23 Apr, 2019 1 commit
  23. 21 Apr, 2019 2 commits
  24. 18 Apr, 2019 1 commit
  25. 13 Apr, 2019 1 commit
  26. 11 Apr, 2019 1 commit
  27. 09 Apr, 2019 1 commit