Skip to content

Commit

Permalink
compose - add settings to community
Browse files Browse the repository at this point in the history
  • Loading branch information
alxgomz committed Jan 31, 2025
1 parent f1cd5f9 commit 1fa3d90
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions docker-compose/community-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ services:
-XX:MinRAMPercentage=50
-XX:MaxRAMPercentage=80
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/alfresco/api/-default-/public/alfresco/versions/1/probes/-ready-"]
test:
- CMD
- curl
- "-f"
- http://localhost:8080/alfresco/api/-default-/public/alfresco/versions/1/probes/-ready-
interval: 30s
timeout: 3s
retries: 5
Expand All @@ -54,6 +58,8 @@ services:
- "traefik.enable=true"
- "traefik.http.routers.alfresco.rule=PathPrefix(`/`)"
- "traefik.http.services.alfresco.loadbalancer.server.port=8080"
- "traefik.http.middlewares.limit.buffering.maxRequestBodyBytes=5368709120"
- "traefik.http.routers.alfresco.middlewares=limit@docker"
- "traefik.http.routers.solrapideny.rule=PathRegexp(`^/alfresco/(wc)?s(ervice)?/api/solr/.*$`)"
- "traefik.http.middlewares.acsfakeauth.basicauth.users=fake:"
- "traefik.http.routers.solrapideny.middlewares=acsfakeauth@docker"
Expand Down Expand Up @@ -103,6 +109,8 @@ services:
- "traefik.enable=true"
- "traefik.http.routers.share.rule=PathPrefix(`/share`)"
- "traefik.http.services.share.loadbalancer.server.port=8080"
- "traefik.http.middlewares.limit.buffering.maxRequestBodyBytes=5368709120"
- "traefik.http.routers.share.middlewares=limit@docker"
- "traefik.http.routers.proxiedsolrapideny.rule=PathRegexp(`^/share/proxy/alfresco(-(noauth|feed|api))?/api/solr/`)"
- "traefik.http.middlewares.sharefakeauth.basicauth.users=fake:"
- "traefik.http.routers.proxiedsolrapideny.middlewares=sharefakeauth@docker"
Expand Down Expand Up @@ -150,7 +158,15 @@ services:
- "61616:61616" # OpenWire
- "61613:61613" # STOMP
healthcheck:
test: ["CMD", "/opt/activemq/bin/activemq", "query", "--objname", "type=Broker,brokerName=*,service=Health", "|", "grep", "Good"]
test:
- CMD
- /opt/activemq/bin/activemq
- query
- "--objname"
- type=Broker,brokerName=*,service=Health
- "|"
- grep
- Good
interval: 10s
timeout: 5s
retries: 5
Expand Down Expand Up @@ -202,6 +218,7 @@ services:
- "--api.insecure=true"
- "--providers.docker=true"
- "--entrypoints.web.address=:8080"
- "--entrypoints.web.transport.respondingTimeouts.readTimeout=20m"
- "--entryPoints.traefik.address=:8888"
- "--accesslog=true"
- "--providers.docker.exposedByDefault=false"
Expand Down

0 comments on commit 1fa3d90

Please sign in to comment.