All Questions
Tagged with aws-fargate docker
9
questions
1
vote
1
answer
2k
views
How to pass arguments into scheduled task on AWS Fargate?
I have a docker container (derived from PHP-CLI) that may be launched like this locally:
docker run php-cli-container php public/index.php argument1 argument2
I uploaded the container to Amazon AWS ...
0
votes
1
answer
616
views
How to share directory with Fargate container
I have a fargate container running which needs access to files present on an EC2 instance. Both are in the same network and security groups do not restrict traffic.
I tried using sshfs as well as ...
1
vote
1
answer
2k
views
Dockerized Laravel application with volume on AWS Fargate issue
this is my scenario, I have a Laravel 8 application that I'm trying to deploy using AWS ECS through AWS Fargate.
This is the useful part of my dockerfile:
### ... Previous composer and npm stages
...
0
votes
1
answer
183
views
How can I run a containerized task in the cloud 24/7 [closed]
I have just begun to play around with various cloud vendors (AWS, GCP, etc) to get a better understanding of what they have to offer.
This is what I am looking to do: I have a task that runs 24/7 that ...
3
votes
1
answer
1k
views
Why would AWS Fargate task containers report wildly incorrect memory limits?
Our task definition sets Task Memory to 8192MiB.
Its sole docker container running Debian is configured with no memory limits.
In the bootstrap, we call cat /proc/meminfo and get a report that shows:
...
1
vote
1
answer
333
views
How to assign which user to execute commands inside the container in AWS FARGATE
i'm trying to launch a nodejs container using AWS FARGATE, the problem i'm facing is that fargate gives me this error :
cannot find this module "/path/to/file/webrtc.js"
And when i execute ...
1
vote
0
answers
898
views
Fargate instance - what is utilizing disk space?
I have a fargate instance i'm running and need disk space (ephemeral storage) for some data processing.
I'm running a modified ubuntu image which sits at about 700MBs
I'm running the new fargate ...
0
votes
1
answer
162
views
AWS- Build a Modern Web Application(Mythical Mysfits)-Error with Docker Image
I am new in the area of network and server management with zero experience. I am trying to learn from the tutorial "MythicalMysfits" from AWS. The other post helped and I updated pip to pip3, but now ...
1
vote
1
answer
1k
views
AWS API Gateway to Fargate, only charge when request is running
From the following link, it seems possible to call a Fargate task from the API Gateway:
https://aws.amazon.com/blogs/compute/introducing-amazon-api-gateway-private-endpoints/
But, does the task have ...