-
Notifications
You must be signed in to change notification settings - Fork 3
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 #12 from justin13601/src_app_folder_refactor
Src app folder refactor
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
version: '3.7' | ||
services: | ||
web: | ||
# Path to dockerfile. | ||
# '.' represents the current directory in which docker-compose.yml is present. | ||
build: . | ||
|
||
# Mapping of container port to host | ||
ports: | ||
- "8080:80" | ||
# Mount volume | ||
# volumes: | ||
# - "/usercode/:/code" | ||
|
||
# Link database container to app container for reachability. | ||
# links: | ||
# - "database:backend" | ||
|
||
database: | ||
# image to fetch from docker hub | ||
image: justin13601/mimic-iv-dash:latest | ||
|
||
# Environment variables for startup script, container will use these variables to start the container with these define variables. | ||
environment: | ||
- "PROJECT_ID=kind-lab" | ||
- "BUCKET_NAME=kind-lab.appspot.com" | ||
- "GOOGLE_APPLICATION_CREDENTIALS=''" |