Last active
September 13, 2020 23:56
-
-
Save diegomais/9d89687d891687edec1fc1f075e65a38 to your computer and use it in GitHub Desktop.
Express
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
node_modules |
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
version: '3.7' | |
services: | |
app: | |
image: node:12-alpine | |
depends_on: | |
- mysql | |
command: sh -c "yarn install && yarn run dev" | |
ports: | |
- 3000:3000 | |
working_dir: /app | |
volumes: | |
- ./:/app | |
environment: | |
MYSQL_HOST: mysql | |
MYSQL_USER: root | |
MYSQL_PASSWORD: secret | |
MYSQL_DB: todos | |
mysql: | |
image: mysql:5.7 | |
volumes: | |
- todo-mysql-data:/var/lib/mysql | |
environment: | |
MYSQL_ROOT_PASSWORD: secret | |
MYSQL_DATABASE: todos | |
volumes: | |
todo-mysql-data: |
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
FROM node:12-alpine | |
WORKDIR /app | |
COPY package.json yarn.lock ./ | |
RUN yarn install --production | |
COPY . . | |
CMD ["node", "src/index.js"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment