This repository has been archived by the owner on Feb 7, 2025. It is now read-only.
generated from CDCgov/template
-
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.
Adding docker compose for app and azurite (#27)
* Adding docker compose for app and azurite * Update README.md --------- Co-authored-by: jcrichlake <[email protected]>
- Loading branch information
1 parent
1e7557b
commit 8213917
Showing
4 changed files
with
54 additions
and
12 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
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,34 @@ | ||
version: "3.7" | ||
services: | ||
rs-sftp: | ||
build: . | ||
environment: | ||
AZURE_BLOB_CONNECTION_STRING: DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://sftp-Azurite:10000/devstoreaccount1; | ||
ENV: local | ||
# Uncomment the line below to call local report stream. Otherwise we'll use a mock response | ||
#REPORT_STREAM_URL_PREFIX: http://localhost:7071 | ||
ports: | ||
- "9090:9090" # default api endpoint port | ||
platform: linux/amd64 | ||
depends_on: | ||
- sftp-Azurite | ||
networks: | ||
- sftp | ||
|
||
sftp-Azurite: | ||
image: mcr.microsoft.com/azure-storage/azurite | ||
# uncomment the line below to skip x-ms-version checks | ||
# command: azurite --skipApiVersionCheck --blobHost 0.0.0.0 --queueHost 0.0.0.0 | ||
volumes: | ||
# map to Azurite data objects to the build directory | ||
- ./localdata/azurite:/data | ||
ports: | ||
- "11000:10000" | ||
- "11001:10001" | ||
- "11002:10002" | ||
networks: | ||
- sftp | ||
|
||
|
||
networks: | ||
sftp: |
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