CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history
docker-compose.yml
Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.
| 8ade77b | 1 | services: |
| 2 | gluecron: | |
| 3 | build: . | |
| 4 | ports: | |
| 5 | - "3000:3000" | |
| 6 | environment: | |
| 7 | - DATABASE_URL=${DATABASE_URL} | |
| 8 | - GIT_REPOS_PATH=/data/repos | |
| 9 | - PORT=3000 | |
| 10 | - NODE_ENV=production | |
| a4e1564 | 11 | - GATETEST_URL=https://gatetest.ai/api/events/push |
| 8ade77b | 12 | - CRONTECH_DEPLOY_URL=https://crontech.ai/api/trpc/tenant.deploy |
| 13 | volumes: | |
| 14 | - git-repos:/data/repos | |
| 15 | restart: unless-stopped | |
| 16 | healthcheck: | |
| 17 | test: ["CMD", "curl", "-f", "http://localhost:3000/"] | |
| 18 | interval: 30s | |
| 19 | timeout: 10s | |
| 20 | retries: 3 | |
| 21 | ||
| 22 | volumes: | |
| 23 | git-repos: |