-
Notifications
You must be signed in to change notification settings - Fork 648
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix docker-compose network and use built in docker compose #225
base: master
Are you sure you want to change the base?
Conversation
@@ -1,4 +1,4 @@ | |||
DOCKER_COMPOSE := docker-compose | |||
DOCKER_COMPOSE := docker compose |
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.
docker-compose is now built into docker, so this this gets rid of this warning:
Docker Compose is now in the Docker CLI, try `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.
nit: This change seems to break compatibility with older version of Docker where docker compose
is not built-in. Maybe it's something we could provide?
@@ -74,4 +74,3 @@ services: | |||
ports: ["3000:3000"] | |||
networks: | |||
quickstart: | |||
name: quickstart |
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.
this fixes #217
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.
LGTM
@@ -1,4 +1,4 @@ | |||
DOCKER_COMPOSE := docker-compose | |||
DOCKER_COMPOSE := docker compose |
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.
nit: This change seems to break compatibility with older version of Docker where docker compose
is not built-in. Maybe it's something we could provide?
closes #217