We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5b52bf7 + 28282b8 commit 17547a8Copy full SHA for 17547a8
1 file changed
.github/workflows/cd.yaml
@@ -20,8 +20,13 @@ jobs:
20
- name: Execute commands via SSM
21
id : execute_command
22
run: |
23
- aws sts get-caller-identity
24
- aws ssm describe-instance-information --region us-east-1
+ sudo apt update
+ sudo apt install -y docker.io
25
+ sudo systemctl enable docker
26
+ sudo systemctl start docker
27
+ sudo usermod -aG docker ubuntu
28
+ newgrp docker
29
+
30
aws ssm send-command \
31
--instance-ids ${{ secrets.AWS_INSTANCE_ID }} \
32
--document-name "AWS-RunShellScript" \
0 commit comments