From e86611eaf2876b414dabf7767ecd7f66482c7f20 Mon Sep 17 00:00:00 2001 From: JoviTelstra <33044720+JoviTelstra@users.noreply.github.com> Date: Wed, 29 May 2019 07:57:35 +1000 Subject: [PATCH 1/4] Update index.php --- src/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.php b/src/index.php index a17353240..82c0c268f 100644 --- a/src/index.php +++ b/src/index.php @@ -15,7 +15,7 @@
Your PHP application is now running on a container in Amazon ECS.
The container is running PHP version .
From 4e53933c34a3213d9f56d5c051e6747e3cadc782 Mon Sep 17 00:00:00 2001 From: JoviTelstra <33044720+JoviTelstra@users.noreply.github.com> Date: Wed, 29 May 2019 08:04:24 +1000 Subject: [PATCH 2/4] Update index.php --- src/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.php b/src/index.php index 82c0c268f..09a41e4f7 100644 --- a/src/index.php +++ b/src/index.php @@ -16,7 +16,7 @@Your PHP application is now running on a container in Amazon ECS.
The container is running PHP version .
Date: Thu, 30 May 2019 07:46:26 +1000 Subject: [PATCH 3/4] Delete simple-app-task-def.json --- simple-app-task-def.json | 55 ---------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 simple-app-task-def.json diff --git a/simple-app-task-def.json b/simple-app-task-def.json deleted file mode 100644 index 984cf4e85..000000000 --- a/simple-app-task-def.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "family": "console-sample-app", - "volumes": [ - { - "name": "my-vol", - "host": {} - } - ], - "containerDefinitions": [ - { - "environment": [], - "name": "simple-app", - "image": "amazon/amazon-ecs-sample", - "cpu": 10, - "memory": 500, - "portMappings": [ - { - "containerPort": 80, - "hostPort": 80 - } - ], - "mountPoints": [ - { - "sourceVolume": "my-vol", - "containerPath": "/var/www/my-vol" - } - ], - "entryPoint": [ - "/usr/sbin/apache2", - "-D", - "FOREGROUND" - ], - "essential": true - }, - { - "name": "busybox", - "image": "busybox", - "cpu": 10, - "memory": 500, - "volumesFrom": [ - { - "sourceContainer": "simple-app" - } - ], - "entryPoint": [ - "sh", - "-c" - ], - "command": [ - "/bin/sh -c \"while true; do /bin/date > /var/www/my-vol/date; sleep 1; done\"" - ], - "essential": false - } - ] -} From 6dd283c3c7614f92647cce1b69ae847dc1db070d Mon Sep 17 00:00:00 2001 From: JoviTelstra <33044720+JoviTelstra@users.noreply.github.com> Date: Thu, 30 May 2019 08:16:07 +1000 Subject: [PATCH 4/4] Update index.php --- src/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.php b/src/index.php index 09a41e4f7..a17353240 100644 --- a/src/index.php +++ b/src/index.php @@ -15,8 +15,8 @@Your PHP application is now running on a container in Amazon ECS.
The container is running PHP version .