Skip to content

Commit

Permalink
Merge #27: Update database driver value in Index config
Browse files Browse the repository at this point in the history
19025f9 fix: [#25] update database driver value in config (Jose Celano)

Pull request description:

  Update database driver value in Index config.

ACKs for top commit:
  josecelano:
    ACK 19025f9

Tree-SHA512: 2ed169a8cd5ef27d541cb5095233cabe7050f9269b437578aea2cca4263f9a189d112d33f50371435b85c955e69b531352f3dcff298dc1a39ed1df6272ee816f
  • Loading branch information
josecelano committed Jul 10, 2024
2 parents b559337 + 19025f9 commit 3c7a084
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion droplet/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ services:
environment:
- USER_ID=${USER_ID}
- TORRUST_TRACKER_DATABASE=${TORRUST_TRACKER_DATABASE:-sqlite3}
- TORRUST_TRACKER_CONFIG_OVERRIDE_CORE__DATABASE__DRIVER=${TORRUST_TRACKER_CONFIG_OVERRIDE_CORE__DATABASE__DRIVER:-Sqlite3}
- TORRUST_TRACKER_CONFIG_OVERRIDE_CORE__DATABASE__DRIVER=${TORRUST_TRACKER_CONFIG_OVERRIDE_CORE__DATABASE__DRIVER:-sqlite3}
- TORRUST_TRACKER_CONFIG_OVERRIDE_HTTP_API__ACCESS_TOKENS__ADMIN=${TORRUST_TRACKER_CONFIG_OVERRIDE_HTTP_API__ACCESS_TOKENS__ADMIN:-MyAccessToken}
networks:
- backend_network
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ interval_min = 300
on_reverse_proxy = true

[core.database]
driver = "Sqlite3"
driver = "sqlite3"
path = "/var/lib/torrust/tracker/database/sqlite3.db"

[[udp_trackers]]
Expand Down

0 comments on commit 3c7a084

Please sign in to comment.