This message was deleted.
# aws
s
This message was deleted.
b
Certainly possible. Use the
command
option for the containers definition:
Copy code
const task = new awsx.ecs.FargateTaskDefinition(
  'app',
  {
    cpu: '1024',
    memory: '2048' /* MiB */,
    containers: {
      app: {
        image: "ubuntu",
        command: ['/start'],
      }
    }
  }
)
b
ooooh, great ! thanks. I'll try it tonight 🙂 thanks @broad-gold-44713