-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Merge proprietary into open-source, June/July 2022 #13
Conversation
Makefile
Outdated
|
||
build_shell: | ||
docker-compose build | ||
docker compose build |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think docker-compose build
was correct
Makefile
Outdated
|
||
up: | ||
docker-compose up | ||
docker compose up |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think docker-compose up
was correct
Makefile
Outdated
|
||
shell: | ||
docker-compose run --service-ports --rm controller bash | ||
docker compose run --service-ports --rm controller bash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think docker-compose run --service-ports --rm controller bash
was correct
Makefile
Outdated
@@ -23,16 +23,16 @@ NO_COLOR='\033[0m' | |||
clean_world: destroy_shell build_shell up | |||
|
|||
destroy_shell: | |||
docker-compose down -v | |||
docker compose down -v |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think docker-compose down -v
was correct
No description provided.