-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #201 from adhocteam/nodejs-update
Nodejs & yarn updates
- Loading branch information
Showing
21 changed files
with
5,378 additions
and
5,948 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
12.20.0 | ||
14.15.4 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
FROM node:12.20.0 | ||
FROM node:14.15.4 | ||
WORKDIR /app |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
version: "3.5" | ||
services: | ||
backend: | ||
build: | ||
context: . | ||
command: yarn server | ||
user: ${CURRENT_USER:-root} | ||
ports: | ||
- "8080:8080" | ||
depends_on: | ||
- db | ||
- redis | ||
environment: | ||
- POSTGRES_HOST=postgres_docker | ||
- REDIS_HOST=redis | ||
volumes: | ||
- ".:/app:rw" | ||
frontend: | ||
build: | ||
context: . | ||
command: yarn start | ||
user: ${CURRENT_USER:-root} | ||
stdin_open: true | ||
ports: | ||
- "3000:3000" | ||
volumes: | ||
- "./frontend:/app:rw" | ||
- "./scripts:/app/scripts" | ||
environment: | ||
- BACKEND_PROXY=http://backend:8080 | ||
worker: | ||
build: | ||
context: . | ||
command: yarn worker | ||
env_file: .env | ||
depends_on: | ||
- db | ||
- redis | ||
environment: | ||
- POSTGRES_HOST=postgres_docker | ||
- REDIS_HOST=redis | ||
volumes: | ||
- ".:/app:rw" |
This file contains 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
This file contains 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
Oops, something went wrong.