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.override.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.override.ymlBlame20 lines · 1 contributor
d980ea8Claude1# App-only deploy override.
2#
3# For hosts that already run their own reverse proxy / TLS terminator and
4# therefore must NOT have Gluecron's bundled Caddy grab ports 80/443.
5# Current home: the Vultr box at 149.28.119.158, fronted by a custom Bun
6# service on :443 that proxies gluecron.com -> 127.0.0.1:3000.
7#
8# Usage (brings up ONLY the app, skips the caddy service):
9# docker compose up -d --build gluecron
10#
11# This file is auto-loaded by `docker compose`. It publishes the app on the
12# loopback interface only, so the external proxy can reach it but the
13# container is never exposed directly to the internet. SSH_PORT=0 disables
14# the git-over-SSH listener (HTTPS git clone/push is unaffected).
15services:
16 gluecron:
17 ports:
18 - "127.0.0.1:3000:3000"
19 environment:
20 - SSH_PORT=0