-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
084a2ca
commit b7f3a53
Showing
8 changed files
with
727 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,3 +59,6 @@ typings/ | |
|
||
# next.js build output | ||
.next | ||
|
||
# TS dist folder | ||
dist/ |
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,10 @@ | ||
version: "3" # use version Compose version 3 | ||
services: # our services | ||
api: | ||
image: node # use latest node image | ||
working_dir: /app # set the working directory to /app | ||
volumes: # volumes are there to let us persist data when containers are exited | ||
- .:/app # bind a current directory of the host to the /app directory in the container | ||
ports: | ||
- 3000:3000 # bind port 3000 on host to port 3000 on container | ||
command: "npm run build-and-start" |
Oops, something went wrong.