-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* make setup a namespace and billboardDs a separate task * replace logInfo with console.log * add cli job to setup raw ds config * add readme and refine start command * fix typo in Readme
- Loading branch information
Showing
14 changed files
with
301 additions
and
39 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
version: "3.1" | ||
services: | ||
backend: | ||
image: dm3org/dm3-backend:v0.2.1 | ||
restart: always | ||
depends_on: | ||
- db | ||
environment: | ||
REDIS_URL: redis://db:6379 | ||
SIGNING_PUBLIC_KEY: ${SIGNING_PUBLIC_KEY} | ||
SIGNING_PRIVATE_KEY: ${SIGNING_PRIVATE_KEY} | ||
ENCRYPTION_PUBLIC_KEY: ${ENCRYPTION_PUBLIC_KEY} | ||
ENCRYPTION_PRIVATE_KEY: ${ENCRYPTION_PRIVATE_KEY} | ||
RPC: ${RPC} | ||
PORT: 8081 | ||
LOG_LEVEL: 'debug' | ||
db: | ||
image: redis | ||
restart: always |
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
Oops, something went wrong.