We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps:
ffmpeg
const input = s3.client.getSignedUrl('getObject', { Bucket: 'my-bucket', Key: 'video_1mb.mp4', Expires: 1000 }) const metadata = await (new Promise((resolve, reject) => { ffmpeg.ffprobe(input, async (err, data) => { if (err) { return reject(err) } resolve(data) }) }))
./localstack
make_bucket failed: s3://my-bucket Read timeout on endpoint URL: "http://localhost:4572/my-bucket"
Workaround: Restart Docker daemon
docker-compose.yml
version: '3.7' services: localstack: image: localstack/localstack:0.9.0 container_name: localstack ports: - '4567-4593:4567-4593' - '8080:8080' environment: - SERVICES=iam,lambda,s3,dynamodb,apigateway - DEBUG=yes - DATA_DIR=/tmp/localstack/data - PORT_WEB_UI=8080 - LAMBDA_EXECUTOR=docker-reuse - DOCKER_HOST=unix:///var/run/docker.sock volumes: - './localstack:/tmp/localstack' - '/var/run/docker.sock:/var/run/docker.sock'
Host platform: MacOS Localstack image version: 0.9.0 Docker version: 18.09.2, build 6247962 docker-compose version: 1.23.2, build 1110ad01
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps:
ffmpeg
./localstack
// Repeat 1 - 5 (~5 times)
make_bucket failed: s3://my-bucket Read timeout on endpoint URL: "http://localhost:4572/my-bucket"
Workaround: Restart Docker daemon
docker-compose.yml
Host platform: MacOS
Localstack image version: 0.9.0
Docker version: 18.09.2, build 6247962
docker-compose version: 1.23.2, build 1110ad01
The text was updated successfully, but these errors were encountered: