Skip to content

Commit

Permalink
Merge pull request #68 from GEO-BON/titler_docker
Browse files Browse the repository at this point in the history
Titler docker
  • Loading branch information
glaroc authored Jul 18, 2023
2 parents ab1fb9c + 5e647f0 commit a5f0379
Show file tree
Hide file tree
Showing 11 changed files with 11,221 additions and 19,171 deletions.
1 change: 1 addition & 0 deletions compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ services:
- WDS_SOCKET_PORT=0
depends_on:
- script-server
- tiler

http-gateway:
volumes:
Expand Down
1 change: 1 addition & 0 deletions compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ services:
- '80'
depends_on:
- script-server
- tiler

http-gateway:
volumes:
Expand Down
9 changes: 9 additions & 0 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,12 @@ services:
- ./output:/static/output:ro
depends_on:
- script-server

tiler:
container_name: biab-tiler
image: ghcr.io/developmentseed/titiler:0.12.0
volumes:
- ./output:/output:rw
environment:
- PORT=8000
- WORKERS_PER_CORE=1
5 changes: 5 additions & 0 deletions http-proxy/conf.d-prod/ngnix.conf
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ server {
proxy_pass http://biab-script-server:8080/pipeline/;
}


location /tiler/ {
proxy_pass http://biab-tiler:8000/;
}

location / {
proxy_pass http://biab-ui-prod:80;
}
Expand Down
4 changes: 4 additions & 0 deletions http-proxy/conf.d/ngnix.conf
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ server {
proxy_pass http://swagger_editor:8080/swagger/;
}

location /tiler/ {
proxy_pass http://biab-tiler:8000/;
}

location / {
proxy_pass http://biab-ui:3000;

Expand Down
46 changes: 23 additions & 23 deletions ui/BonInABoxScriptService/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,32 +13,32 @@
"fs": false
},
"dependencies": {
"@babel/cli": "^7.0.0",
"superagent": "^5.3.0"
"@babel/cli": "^7.22.9",
"superagent": "^5.3.1"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/core": "^7.22.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.22.7",
"@babel/plugin-proposal-do-expressions": "^7.22.5",
"@babel/plugin-proposal-export-default-from": "^7.22.5",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-function-bind": "^7.22.5",
"@babel/plugin-proposal-function-sent": "^7.22.5",
"@babel/plugin-proposal-json-strings": "^7.18.6",
"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-proposal-pipeline-operator": "^7.22.5",
"@babel/plugin-proposal-throw-expressions": "^7.22.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.22.9",
"@babel/register": "^7.22.5",
"expect.js": "^0.3.1",
"mocha": "^8.0.1",
"sinon": "^7.2.0"
"mocha": "^8.4.0",
"sinon": "^7.5.0"
},
"files": [
"dist"
Expand Down
Loading

0 comments on commit a5f0379

Please sign in to comment.