Skip to content

Commit

Permalink
merged upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher-Stevers committed Mar 31, 2023
2 parents b269922 + b97a6a9 commit 3745c94
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ OpenQ-User-Registration/
OpenQ-Espresso/
OpenQ-Email-Server/
OpenQ-Document-Manager/
OpenQ-Notification-Autotask/

# Data from The Graph Node's Postgres and IPFS
data/
Expand All @@ -52,3 +53,5 @@ yarn.lock
notes.txt
test/
tmp/

secret.yml
15 changes: 15 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,21 @@ services:
volumes:
- /app/node_modules
- ./OpenQ-OZ-Claim-Autotask:/app
openq-notification-autotask:
container_name: openq-notification-autotask
depends_on:
- openq-json-rpc-node
- openq-contracts
build:
dockerfile: Dockerfile
context: ./OpenQ-Notification-Autotask
env_file:
- ./OpenQ-Notification-Autotask/.env
ports:
- "8093:8093"
volumes:
- /app/node_modules
- ./OpenQ-Notification-Autotask:/app
github-proxy:
container_name: github-proxy
build:
Expand Down
1 change: 1 addition & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ declare -a repos=(
"OpenQ-User-Registration"
"OpenQ-Email-Server"
"OpenQ-Document-Manager"
"OpenQ-Notification-Autotask"
)

for repo in "${repos[@]}"; do
Expand Down
2 changes: 1 addition & 1 deletion rebuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ containername=$1
docker stop containername
docker rm containername
docker-compose build --no-cache $containername $containername
docker-compose up --build --force-recreate --no-deps -d $containername
docker-compose up --build --force-recreate --no-deps -d $containername

0 comments on commit 3745c94

Please sign in to comment.