You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had a chance to look at what is causing this issue. This app differs from all the other starter apps per line 73 on docker-compose.yml on the volume configuration. It also specifies v2.3.0 for the image which added lots of S3 features rather than lastest.
Based on recent documentation this seems to be preferred method from Localstack filesystems. If the host doesn't have a local cache it creates one in the app working directory.
The other starter apps use the following, which I believe based on my research that it creates a cache or tmp directory for the localstack not within the app directory, but on the host machine hence you don't see a volume directory in the other apps when running make develop
volumes:
- 'localstack:/var/lib/localstack'`
Additionally, in troubleshooting this issue, I tried to access the localhost bucket via localhost:4566, 0.0.0.0:4566, 127.0.0.1:4566, and https://localhost.localstack.cloud:4566/ and it would not work for me. Which led me to this issue at local stack #1392 . The thread saying the local dashboard isn't working but the cloud version does at app.localstack.cloud. This cloud dashboard did work for me.
Running
make develop
locally fails with a volume issue:The default
volume
dir does not exist. Adding avolume
directory fixes this.May just be caused by my older version of Docker:
The text was updated successfully, but these errors were encountered: