Issues using s3 with docker setup #809
Labels
bug
Something isn't working
docker
Issues and pull requests related to docker environment
more information needed
requires more info to solve
As explained on the optional-features/s3_storage page, you need to edit the
config/packages/oneup_flysystem.yaml
file to use the s3 adapter. After doing so, the docker image build command starts to fail on this step:[builder-composer 7/7] RUN composer run-script --no-dev post-install-cmd && chmod +x bin/console && sync
. It has errors likeThe s3 service does not have version
andMissing required client configuration options: region: (string)
. I got around this by filling out the s3 environment variables in the.env.example_docker
file (since that's the file that gets copied over inDockerfile
, but obviously, we shouldn't have to do that.Basically, it's checking that the s3 variables are filled out when it shouldn't; it should check them at runtime instead of build time.
The text was updated successfully, but these errors were encountered: