Skip to content

Commit

Permalink
Merge pull request #268 from JaerongA/datajoint_pipeline
Browse files Browse the repository at this point in the history
Minor sciviz fix & add pyrat worker to docker-compose
  • Loading branch information
Thinh Nguyen authored Oct 31, 2023
2 parents fee824a + e10864e commit a6c4f50
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions aeon/dj_pipeline/webapps/sciviz/docker-compose-remote.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# cd aeon/dj_pipeline/webapps/sciviz/
# HOST_UID=$(id -u) docker-compose -f docker-compose-remote.yaml up -d
# Access https://www.swc.ucl.ac.uk/aeon/

version: '2.4'
services:
Expand Down
1 change: 1 addition & 0 deletions aeon/dj_pipeline/webapps/sciviz/specsheet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ SciViz:
route: /aeon
auth:
mode: "database"
hostname: aeon-db2
component_interface:
override: |
from datetime import datetime
Expand Down
10 changes: 7 additions & 3 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ x-aeon-ingest-common: &aeon-ingest-common
services:
acquisition_worker:
<<: *aeon-ingest-common
command: ["aeon_ingest", "acquisition_worker"]
command: [ "aeon_ingest", "acquisition_worker" ]

pyrat_worker:
<<: *aeon-ingest-common
command: [ "aeon_ingest", "pyrat_worker" ]

streams_worker:
<<: *aeon-ingest-common
Expand All @@ -57,7 +61,7 @@ services:
deploy:
mode: replicated
replicas: 3
command: ["aeon_ingest", "streams_worker"]
command: [ "aeon_ingest", "streams_worker" ]

ingest_mid:
<<: *aeon-ingest-common
Expand All @@ -67,4 +71,4 @@ services:
deploy:
mode: replicated
replicas: 2
command: ["aeon_ingest", "mid_priority"]
command: [ "aeon_ingest", "mid_priority" ]

0 comments on commit a6c4f50

Please sign in to comment.