保誠-保戶業務員媒合平台
wayne
2021-12-17 ea43a98d7943fb440ce3c1bfe3aca8555866864a
1
2
3
4
5
6
7
8
9
10
11
12
13
# This configuration is intended for development purpose, it's **your** responsibility to harden it for production
version: '3.8'
services:
  pamapi-sonar:
    image: sonarqube:8.9.2-community
    # Authentication is turned off for out of the box experience while trying out SonarQube
    # For real use cases delete sonar.forceAuthentication variable or set sonar.forceAuthentication=true
    environment:
      - sonar.forceAuthentication=false
    # If you want to expose these ports outside your dev PC,
    # remove the "127.0.0.1:" prefix
    ports:
      - 127.0.0.1:9001:9000