Skip to content

Commit

Permalink
Include default settings in dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
dcadenas committed Aug 26, 2024
1 parent 916a983 commit 7e0febb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions config/settings.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 7e0febb

Please sign in to comment.