dnet-docker/start.sh

25 lines
599 B
Bash
Raw 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
export PG_MAIN_DB=dnet_is
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-10-30 16:00:10 +01:00
export COMPOSE_PROFILES=base,index
2023-10-24 12:08:45 +02:00
#export COMPOSE_PROFILES=base,mail,dsm,vocs,mdstores,wfs,index,contexts,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