Compare commits

...
This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.

1 Commits

Author SHA1 Message Date
Fluffy9 7e5edeea03
added gundb 2022-03-17 10:03:24 -04:00
2 changed files with 21 additions and 0 deletions

5
dc
View File

@ -26,6 +26,11 @@ for i in $(seq 1 ${#PORTAL_MODULES}); do
COMPOSE_FILES+=" -f docker-compose.mongodb.yml -f docker-compose.blocker.yml"
fi
# gundb module - alias "g"
if [[ ${PORTAL_MODULES:i-1:1} == "g" ]]; then
COMPOSE_FILES+=" -f docker-compose.gun.yml"
fi
# jaeger module - alias "j"
if [[ ${PORTAL_MODULES:i-1:1} == "j" ]]; then
COMPOSE_FILES+=" -f docker-compose.jaeger.yml"

16
docker-compose.gun.yml Normal file
View File

@ -0,0 +1,16 @@
version: "3.7"
x-logging: &default-logging
driver: json-file
services:
gun:
image: pupcakes/zenbase-integrated
container_name: gundb-relay
restart: unless-stopped
logging: *default-logging
expose:
- "8765:8765"
networks:
shared:
ipv4_address: 10.10.10.163