aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--conf/build.conf2
-rw-r--r--docker-compose.yml3
2 files changed, 3 insertions, 2 deletions
diff --git a/conf/build.conf b/conf/build.conf
index a5045da..c669282 100644
--- a/conf/build.conf
+++ b/conf/build.conf
@@ -5,7 +5,7 @@
# of a dynamic library. If you set this to yes you must also
# set kore_source together with kore_flavor.
single_binary=yes
-kore_source=../kore-4.2.3/
+kore_source=../kore-4.2.3
kore_flavor=PGSQL=1 TLS_BACKEND=none
# The flags below are shared between flavors
diff --git a/docker-compose.yml b/docker-compose.yml
index ea64994..a5e0b79 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -8,7 +8,7 @@ services:
- "8888:8888"
environment:
- POSTGRES_DB=${POSTGRES_DB}
- - POSTGRES_HOST=172.17.2.2
+ - POSTGRES_HOST=${POSTGRES_HOST}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_USER=${POSTGRES_USER}
depends_on:
@@ -17,6 +17,7 @@ services:
postgres:
container_name: clog-postgres
image: postgres:14-alpine
+ # network_mode: host
volumes:
- .vols/database:/var/lib/postgresql/data
ports: