Skip to content

Commit

Permalink
Merge pull request #18 from kolobok22/fix_makefile
Browse files Browse the repository at this point in the history
add missing agrument
  • Loading branch information
sherifabdlnaby authored Feb 25, 2022
2 parents 36ec912 + a4eb6f0 commit 2f7c058
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ command: ## Execute command ( make command COMMAND=<command> )
@${COMPOSE_PREFIX_CMD} docker-compose run --rm app ${COMMAND}

command-root: ## Execute command as root ( make command-root COMMAND=<command> )
@${COMPOSE_PREFIX_CMD} docker-compose run --rm app ${COMMAND}
@${COMPOSE_PREFIX_CMD} docker-compose run --rm -u root app ${COMMAND}

shell-root: ## Enter container shell as root
@${COMPOSE_PREFIX_CMD} docker-compose exec -u root app /bin/bash
Expand Down

0 comments on commit 2f7c058

Please sign in to comment.