-
Notifications
You must be signed in to change notification settings - Fork 0
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
feature/dockerizeの修正 #340
feature/dockerizeの修正 #340
Conversation
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.yml
Outdated
volumes: | ||
- ./:/code | ||
ports: | ||
- "3000:3000" | ||
links: | ||
- "db" | ||
depends_on: |
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.
links
設定してあるので depends_on
は不要なはず
docker/backend/Dockerfile.dev
Outdated
@@ -11,21 +11,20 @@ ENV RUNTIME_PACKAGES="bash git perl libxml2-dev libxslt-dev libstdc++ tzdata mar | |||
RUN apt-get update -qq | |||
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends apt-utils | |||
RUN apt-get install -y libpq-dev graphviz imagemagick | |||
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - && apt-get install -y nodejs build-essential | |||
RUN npm install -g yarn | |||
# RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - && apt-get install -y nodejs build-essential |
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.
この辺のコメントは消しておいてよいかと!! どうしても参照したくなったらログ見ればよいので
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で!!!!!!!
WHAT
やったこと
やってないこと