forked from IllinoisSocialMediaMacroscope/smm-analytics
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
88 add clowder connection containers back to the docker compose (#89)
* update traefik * fix inconsistent environment variable * remove commented out dependencies * depend * correct dependency * clean up hostip, minio url * add missing environment variables, match docker-compose with nginx * remove inline comment * change everything to latest * split to two yaml file and add example to deploy with clowder or not * remove volume * changelog entry * fix typo
- Loading branch information
1 parent
2bfadc7
commit 72f7d96
Showing
6 changed files
with
160 additions
and
131 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
68 changes: 68 additions & 0 deletions
68
containerized_analytics/smile/docker-compose-smile-clowder.yml
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,68 @@ | ||
version: "3.3" | ||
|
||
services: | ||
clowder-upload-file: | ||
image: socialmediamacroscope/clowder_upload_file:latest | ||
container_name: clowder_upload_file | ||
depends_on: | ||
- rabbitmq | ||
command: python ./rabbitmq_handler.py | ||
environment: | ||
- AWS_ACCESSKEY=${AWS_ACCESSKEY} | ||
- AWS_ACCESSKEYSECRET=${AWS_ACCESSKEYSECRET} | ||
- BUCKET_NAME=${BUCKET_NAME} | ||
- CLOWDER_BASE_URL=${CLOWDER_BASE_URL} | ||
- MINIO_PUBLIC_ACCESS_URL=${MINIO_PUBLIC_ACCESS_URL} | ||
- MINIO_URL=${MINIO_URL} | ||
- QUEUE_NAME=lambda_upload_clowder | ||
- RABBITMQ_HOST=${RABBITMQ_HOST} | ||
restart: unless-stopped | ||
|
||
clowder-list: | ||
image: socialmediamacroscope/clowder_list:latest | ||
container_name: clowder_list | ||
depends_on: | ||
- rabbitmq | ||
command: python ./rabbitmq_handler.py | ||
environment: | ||
- CLOWDER_BASE_URL=${CLOWDER_BASE_URL} | ||
- CLOWDER_GLOBAL_KEY=${CLOWDER_GLOBAL_KEY} | ||
- QUEUE_NAME=lambda_list_clowder | ||
- RABBITMQ_HOST=${RABBITMQ_HOST} | ||
restart: unless-stopped | ||
|
||
clowder-create-space: | ||
image: socialmediamacroscope/clowder_create_space:latest | ||
container_name: clowder_create_space | ||
depends_on: | ||
- rabbitmq | ||
command: python ./rabbitmq_handler.py | ||
environment: | ||
- CLOWDER_BASE_URL=${CLOWDER_BASE_URL} | ||
- QUEUE_NAME=clowder_create_space | ||
- RABBITMQ_HOST=${RABBITMQ_HOST} | ||
restart: unless-stopped | ||
|
||
clowder-create-dataset: | ||
image: socialmediamacroscope/clowder_create_dataset:latest | ||
container_name: clowder_create_dataset | ||
depends_on: | ||
- rabbitmq | ||
command: python ./rabbitmq_handler.py | ||
environment: | ||
- CLOWDER_BASE_URL=${CLOWDER_BASE_URL} | ||
- QUEUE_NAME=lambda_invoke_clowder | ||
- RABBITMQ_HOST=${RABBITMQ_HOST} | ||
restart: unless-stopped | ||
|
||
clowder-create-collection: | ||
image: socialmediamacroscope/clowder_create_collection:latest | ||
container_name: clowder_create_collection | ||
depends_on: | ||
- rabbitmq | ||
command: python ./rabbitmq_handler.py | ||
environment: | ||
- CLOWDER_BASE_URL=${CLOWDER_BASE_URL} | ||
- QUEUE_NAME=clowder_create_collection | ||
- RABBITMQ_HOST=${RABBITMQ_HOST} | ||
restart: unless-stopped |
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.