Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ S3_ACCESSKEYID=dev
S3_SECRETACCESSKEY=dev
S3_FORCE_PATH_STYLE=true
SS_MAXOBJECTSPERBUCKET=100000
SS_MODE=
9 changes: 6 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ services:
dataportal-backend:
image: dataportal-backend
pull_policy: never
init: true
build:
context: ../dataportal
dockerfile: backend/Dockerfile
Expand All @@ -25,6 +26,7 @@ services:
dataportal-backend-test:
image: dataportal-backend
pull_policy: never
init: true
ports:
- "3001:3000"
- "5921:5920"
Expand All @@ -38,8 +40,6 @@ services:
- ../dataportal/shared:/shared
env_file:
- ../dataportal/backend/test.env
environment:
- SS_MODE=test
command: ["npm", "run", "start-test"]
db:
image: "postgres:16"
Expand All @@ -58,6 +58,7 @@ services:
interval: 1s
retries: 120
dataportal-frontend:
init: true
build:
context: ../dataportal
dockerfile: frontend/Dockerfile
Expand Down Expand Up @@ -89,10 +90,11 @@ services:
# dataportal-backend:
# condition: service_started
moto-server:
image: "motoserver/moto:3.0.1"
image: "motoserver/moto:5.1.22"
ports:
- "5000:5000"
storage-service:
init: true
build:
context: ../storage-service
target: dev
Expand Down Expand Up @@ -152,6 +154,7 @@ services:
- ../model-munger:/model-munger
- ../cloudnet-api-client:/cloudnet-api-client
- ../ceilopyter:/ceilopyter
- ../orbital-radar:/orbital-radar
env_file:
- ../cloudnet-processing/dev.env
environment:
Expand Down