diff --git a/pulsar/docker-compose.yml b/pulsar/docker-compose.yml index c9d8bd1f..32bd86f6 100644 --- a/pulsar/docker-compose.yml +++ b/pulsar/docker-compose.yml @@ -13,7 +13,6 @@ services: user: "10000:0" ports: - "6650:6650" - - "8080:8080" environment: PULSAR_MEM: "-Xms512m -Xmx512m -XX:MaxDirectMemorySize=512m" PULSAR_STANDALONE_USE_ZOOKEEPER: "true" @@ -22,13 +21,14 @@ services: networks: - traefik-public - smartcity-shared - command: ["/pulsar/bin/pulsar", "standalone", "-nfw"] - healthcheck: - test: ["CMD-SHELL", "curl -sf http://localhost:8080/admin/v2/clusters || exit 1"] - interval: 30s - timeout: 10s - retries: 10 - start_period: 60s + command: ["/pulsar/bin/pulsar", "standalone"] + # healthcheck désactivé car web service 8080 instable + # healthcheck: + # test: ["CMD-SHELL", "curl -sf http://localhost:8080/admin/v2/clusters || exit 1"] + # interval: 30s + # timeout: 10s + # retries: 10 + # start_period: 60s labels: - "traefik.enable=true" - "traefik.http.routers.pulsar-admin.rule=Host(`pulsar.digitribe.fr`) && PathPrefix(`/admin`, `/ws`, `/lookup`)"