Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
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.

docker-compose.ymlBlame23 lines · 1 contributor
8ade77bClaude1services:
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
a4e1564Claude11 - GATETEST_URL=https://gatetest.ai/api/events/push
8ade77bClaude12 - 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
22volumes:
23 git-repos: