See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| #!/bin/sh | |
| set -e | |
| # Env vars expected: STATE_BUCKET, OPENAB_AGENT_NAME | |
| # Fallback HOME if not defined | |
| HOME="${HOME:-/home/agent}" | |
| export PATH="$HOME/bin:$PATH" | |
| export AWS_PAGER="" |
| #!/bin/sh | |
| set -e | |
| # Env vars expected: OPENAB_BACKEND_AGENT, OPENAB_AGENT_NAME, STATE_BUCKET | |
| HOME="${HOME:-/home/agent}" | |
| export HOME | |
| export AWS_PAGER="" | |
| AWSCLI_VERSION="2.35.7" | |
| UV_VERSION="0.11.21" |
| version: "3" | |
| services: | |
| sonarqube: | |
| image: sonarqube | |
| expose: | |
| - 9000 | |
| ports: | |
| - "127.0.0.1:9000:9000" | |
| networks: |