dnet-docker/start.sh

27 lines
676 B
Bash
Raw Permalink Normal View History

2023-09-13 13:51:30 +02:00
#!/bin/sh
2023-09-27 14:39:58 +02:00
export PUBLIC_PORT=8888
2023-10-04 11:34:06 +02:00
export PUBLIC_API_PORT=9999
2023-09-13 13:51:30 +02:00
export SPRING_BOOT_PORT=8080
export SOLR_PORT=8983
export PG_PORT=5432
export PG_USER=dnet
export PG_PASSWORD=ax45vs#1A
2024-01-04 12:31:47 +01:00
export PG_RESOURCES_DB=dnet_resources
2023-09-26 09:56:19 +02:00
export PG_DSM_DB=dnet_dsm
2023-09-28 12:02:00 +02:00
export PG_MDSTORES_DB=dnet_mdstores
2023-09-26 11:53:18 +02:00
export PG_WFS_DB=dnet_wfs
2023-09-28 12:02:00 +02:00
export PG_VOCS_DB=dnet_vocabularies
export PG_CONTEXTS_DB=dnet_contexts
2023-10-24 12:08:45 +02:00
export PG_MDSTORES_DATA_DB=dnet_mdstores_data
2023-11-09 14:53:58 +01:00
export PG_INDEX_DB=dnet_index_configs
export PG_OAI_DB=dnet_oai
2023-10-24 12:08:45 +02:00
2023-11-22 12:07:31 +01:00
#export COMPOSE_PROFILES=base,ui
export COMPOSE_PROFILES=base,mail,dsm,vocs,mdstores,wfs,index,contexts,oai,ui
2023-09-13 13:51:30 +02:00
2023-10-03 09:51:41 +02:00
docker-compose -f docker-compose.dev.yml up --force-recreate --build