Skip to content

Commit

Permalink
fix(docker): fix configuration location
Browse files Browse the repository at this point in the history
  • Loading branch information
ncarlier committed Apr 29, 2024
1 parent 1193975 commit e3b75fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ COPY --from=backend-builder /go/src/$REPOSITORY/$ARTIFACT/release/$ARTIFACT /usr
COPY --from=frontend-builder /usr/src/app/build /var/local/html

# Add configuration file
ADD ./pkg/config/defaults.toml /etc/readflow.toml
ADD ./internal/config/defaults.toml /etc/readflow.toml

# Set configuration file
ENV READFLOW_CONFIG /etc/readflow.toml
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Readflow configuration is a TOML file that you can specify using the `-c` comman

You can initialize a configuration file example by using the `init-config -f config.toml` command.

A configuration file example can be found [here](./pkg/config/defaults.toml).
A configuration file example can be found [here](./internal/config/defaults.toml).

Type `readflow --help` to display available commands.

Expand Down

0 comments on commit e3b75fa

Please sign in to comment.