Allow disabling S3 explicitly, disable in Docker Compose

For example when there is a .env.development for running the app on a
host machine directly, but as a developer you also want to run it with
Docker Compose from time to time.
This commit is contained in:
2024-02-08 12:48:30 +01:00
parent c9052b35f6
commit a7cbd8ce36
5 changed files with 8 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ test:
service: Disk
root: <%= Rails.root.join("tmp/storage") %>
<% if ENV["S3_ENABLED"] %>
<% if ENV["S3_ENABLED"] && ENV["S3_ENABLED"].to_s != "false" %>
s3:
service: S3
endpoint: <%= ENV["S3_ENDPOINT"] %>