mirror of
https://github.com/RGJorge/ContainerFlow.git
synced 2026-08-03 07:21:42 +02:00
Adds a GitHub Actions workflow that builds and pushes the Docker image to ghcr.io/rgjorge/containerflow on every tag push, so end users can run ContainerFlow without cloning the repo or building locally. - New workflow: .github/workflows/docker-release.yml - docker-compose.yml: uses the prebuilt image from GHCR by default - New docker-compose.local.yml: override for building from source (devs) - .env.example: simplified + adds COMPOSE_FILE toggle for local build - README EN + ES: quick-start updated to no-clone flow - .gitignore: ignore task/ planning notes dir
24 lines
476 B
Plaintext
24 lines
476 B
Plaintext
node_modules/
|
|
dist/
|
|
*.log
|
|
.env
|
|
|
|
# Persistent data (SQLite + JSON configs) — default location
|
|
data/
|
|
|
|
# Legacy location (cuando los archivos vivian en cwd directamente)
|
|
.dockerflow-*.json
|
|
.dockerflow-*.db
|
|
.dockerflow-*.db-wal
|
|
.dockerflow-*.db-shm
|
|
|
|
# Local notes / marketing — not part of the public repo
|
|
linkdin.md
|
|
recomendaciones.md
|
|
docs/reddit.md
|
|
# AI assistant context — internal, not for public repo
|
|
CLAUDE.md
|
|
|
|
# Planning notes — internal, not for public repo
|
|
task/
|