Skip to content

feat: add compose.coolify.yml for PaaS deployment#69

Closed
satyvm wants to merge 1 commit into
imputnet:mainfrom
satyvm:main
Closed

feat: add compose.coolify.yml for PaaS deployment#69
satyvm wants to merge 1 commit into
imputnet:mainfrom
satyvm:main

Conversation

@satyvm

@satyvm satyvm commented Jun 12, 2026

Copy link
Copy Markdown

Adds a stripped-down compose.coolify.yml tailored for deploying to Coolify.

  • Delegates routing and SSL to Coolify (removes nginx and acme.sh).
  • Drops the backup proxy, relying on Coolify for availability.
  • Serves bangs.json via a lightweight alpine static web server.

@greptile-apps

greptile-apps Bot commented Jun 12, 2026

Copy link
Copy Markdown

Reviews (1): Last reviewed commit: "feat: add Coolify compose configuration" | Re-trigger Greptile

Comment thread compose.coolify.yml
Comment on lines +28 to +32
bangs:
container_name: bangs
image: joseluisq/static-web-server:2-alpine
init: true
restart: unless-stopped

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 The bangs service is missing read_only: true, which both ubo_proxy and ext_proxy set for security hardening. Since the container only serves a static file, there's no reason it needs a writable root filesystem.

Suggested change
bangs:
container_name: bangs
image: joseluisq/static-web-server:2-alpine
init: true
restart: unless-stopped
bangs:
container_name: bangs
image: joseluisq/static-web-server:2-alpine
read_only: true
init: true
restart: unless-stopped

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

Comment thread compose.coolify.yml

bangs:
container_name: bangs
image: joseluisq/static-web-server:2-alpine

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 The bangs image uses a floating tag (2-alpine), meaning a minor-version bump on Docker Hub can silently change the running binary. The main compose.yml pins acme.sh to a full SHA256 digest. Consider pinning to a specific digest or immutable tag to make deployments reproducible and avoid unexpected breakage.

Suggested change
image: joseluisq/static-web-server:2-alpine
image: joseluisq/static-web-server:2.34.0-alpine

@dumbmoron

Copy link
Copy Markdown
Member

this is not something we would like to maintain, sorry! if it's useful for you, please feel free to keep a fork with it

@dumbmoron dumbmoron closed this Jun 17, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants