diff options
-rw-r--r-- | README.md | 5 | ||||
-rw-r--r-- | conf/build.conf | 2 | ||||
-rw-r--r-- | docker-compose.yml | 3 |
3 files changed, 4 insertions, 6 deletions
@@ -4,7 +4,6 @@ An attempt to reimplement flog, using the [kore.io](https://kore.io) framework. ## TODO -* seccomp broken in alpine/docker. * Determine how to handle `lib`/dependencies. -* Figure out how to build a statically-linked/standalone binary. -* Upgrade to Kore 4.2. +* Fix standalone binary (doesn't call `init` for DB?). + diff --git a/conf/build.conf b/conf/build.conf index 7a257d1..32bbf21 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=/home/mcvady/working/kore-4.2.2/ +# kore_source=../kore-4.2.2/ # 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 d8ca319..ea64994 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,3 @@ -version: "2" - services: clog: @@ -10,6 +8,7 @@ services: - "8888:8888" environment: - POSTGRES_DB=${POSTGRES_DB} + - POSTGRES_HOST=172.17.2.2 - POSTGRES_PASSWORD=${POSTGRES_PASSWORD} - POSTGRES_USER=${POSTGRES_USER} depends_on: |