From 7e0febb8ed613c066703c01d1f6407d76a9a8f80 Mon Sep 17 00:00:00 2001 From: Daniel Cadenas Date: Mon, 26 Aug 2024 19:20:01 -0300 Subject: [PATCH] Include default settings in dockerfile --- Dockerfile | 1 + config/settings.yml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index faf2f61..63d3808 100644 --- a/Dockerfile +++ b/Dockerfile @@ -71,6 +71,7 @@ USER appuser # Copy the executable from the "build" stage. COPY --from=build /bin/server /bin/ COPY ./migrations /app/migrations +COPY ./config/settings.yml /app/config/settings.yml # Expose the port that the application listens on. EXPOSE 3000 diff --git a/config/settings.yml b/config/settings.yml index 91f5c15..cb0d1a7 100644 --- a/config/settings.yml +++ b/config/settings.yml @@ -1,8 +1,8 @@ followers: relay: wss://relay.nos.social - neo4j_uri: "bolt://db:7687" + neo4j_uri: "db:7687" neo4j_user: "neo4j" - neo4j_password: "password" + neo4j_password: "mydevpassword" event_channel_size: 500 event_workers: 5 follow_change_channel_size: 50000