Merged
Conversation
| `docker run --rm -it keboola/cli-utils php ./cli.php` | ||
| `docker run --rm -it keboola/cli-utils php ./cli.php <commands>` | ||
|
|
||
| ### Running locally and local development |
Contributor
There was a problem hiding this comment.
Running locally
- clone the repo
- (optional for
manage:mass-project-remove-expiration) init .env filecp .env.dist .envand fill variables - build the image
docker compose build app - run a command
docker compose run --rm app <command>
Development
- clone the repo
- (optional for
manage:mass-project-remove-expiration) init .env filecp .env.dist .envand fill variables - build the image
docker compose build dev - update the code
- run a command
docker compose run --rm dev <command>(runcomposer installfor you automaticaly)
I think we should use docker compose when we have this setup done and do not mess with lover docker command
Contributor
There was a problem hiding this comment.
you don't even need php cli.php in front of command as running cli.php is part of docker compose setup
Contributor
Author
There was a problem hiding this comment.
- I have added the
.envto app service (otherwise it would be ignored) -> so the.envfile is required -> added to the steps - the
php cli.phpis needed because we don't have entrypoint but command in docker-compose.yml - I have split the running locally and development as you suggest, good point
- I still would keep the
docker runfor cases when you dont want to build the image locally (which you technically should not, if you simply want to use it as is)
Contributor
Author
There was a problem hiding this comment.
@vojtabiberle I have made some modifications, thats why the new review requested
vojtabiberle
approved these changes
Aug 26, 2025
vojtabiberle
approved these changes
Aug 27, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes:
reorganize readme by topics
add instructions for development/usage
let AI generate docs for missing commands
Additional notes