Skip to content

Commit

Permalink
chore: integrate DSP-INGEST in start-stack (#566)
Browse files Browse the repository at this point in the history
  • Loading branch information
BalduinLandolt committed Oct 12, 2023
1 parent c69af60 commit e8fb38b
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions src/dsp_tools/resources/start-stack/docker-compose.yml
Expand Up @@ -32,7 +32,9 @@ services:
ports:
- "1024:1024"
volumes:
- .:/docker
- ./tmp:/tmp
- .:/sipi/config
- ./sipi/images:/sipi/images
networks:
- knora-net
environment:
Expand All @@ -44,7 +46,7 @@ services:
- SIPI_WEBAPI_PORT=3333
- KNORA_WEBAPI_KNORA_API_EXTERNAL_HOST=0.0.0.0
- KNORA_WEBAPI_KNORA_API_EXTERNAL_PORT=3333
command: --config=/docker/sipi.docker-config.lua
command: --config=/sipi/config/sipi.docker-config.lua

api:
# on the verge of every deployment (fortnightly), update the "image" value from the "api" value of
Expand Down Expand Up @@ -74,6 +76,24 @@ services:
- KNORA_WEBAPI_KNORA_API_EXTERNAL_HOST=0.0.0.0
- KNORA_WEBAPI_KNORA_API_EXTERNAL_PORT=3333

ingest:
image: daschswiss/dsp-ingest:latest
ports:
- "3340:3340"
volumes:
- ./sipi/images:/opt/images
- ./sipi/tmp-dsp-ingest:/opt/temp
environment:
- SERVICE_HOST=0.0.0.0
- SERVICE_PORT=3340
- SERVICE_LOG_FORMAT=text
- STORAGE_ASSET_DIR=/opt/images
- STORAGE_TEMP_DIR=/opt/temp
- JWT_AUDIENCE=http://localhost:3340
- JWT_ISSUER=0.0.0.0:3333
- JWT_SECRET=UP 4888, nice 4-8-4 steam engine
- SIPI_USE_LOCAL_DEV=false

networks:
knora-net:
name: knora-net

0 comments on commit e8fb38b

Please sign in to comment.