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
Copy file name to clipboardExpand all lines: docs/aws.md
+4-6Lines changed: 4 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -348,14 +348,13 @@ The grandparent directory of the `aws` tool will be mounted into the container a
348
348
349
349
### Docker installation
350
350
351
-
Docker is required by Nextflow to execute tasks on AWS Batch. The **Amazon ECS-Optimized Amazon Linux 2 (AL2) x86_64 AMI** has Docker installed, however, if you create your AMI from a different AMI that does not have Docker installed, you will need to install it manually.
351
+
Docker is required by Nextflow to execute tasks on AWS Batch. The **Amazon ECS-optimized Amazon Linux 2023 AMI** has Docker installed, however, if you create your AMI from a different AMI that does not have Docker installed, you will need to install it manually.
352
352
353
353
The following snippet shows how to install Docker on an Amazon EC2 instance:
354
354
355
355
```bash
356
356
# install Docker
357
357
sudo yum update -y
358
-
sudo amazon-linux-extras install docker
359
358
sudo yum install docker
360
359
361
360
# start the Docker service
@@ -365,21 +364,20 @@ sudo service docker start
365
364
sudo usermod -a -G docker ec2-user
366
365
```
367
366
368
-
You may have to reboot your instance for the changes to `ec2-user`to take effect.
367
+
You must logging out and logging back in again to use the new `ec2-user`permissions.
369
368
370
369
These steps must be done *before* creating the AMI from the current EC2 instance.
371
370
372
371
### Amazon ECS container agent installation
373
372
374
373
The [ECS container agent](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ECS_agent.html) is a component of Amazon Elastic Container Service (Amazon ECS) and is responsible for managing containers on behalf of ECS. AWS Batch uses ECS to execute containerized jobs, therefore it requires the agent to be installed on EC2 instances within your Compute Environments.
375
374
376
-
The ECS agent is included in the **Amazon ECS-Optimized Amazon Linux 2 (AL2) x86_64 AMI** . If you use a different base AMI, you can also install the agent on any EC2 instance that supports the Amazon ECS specification.
375
+
The ECS agent is included in the **Amazon ECS-optimized Amazon Linux 2023 AMI** . If you use a different base AMI, you can also install the agent on any EC2 instance that supports the Amazon ECS specification.
0 commit comments