Skip to content

Commit

Permalink
Fix port
Browse files Browse the repository at this point in the history
  • Loading branch information
namse committed Dec 2, 2023
1 parent 2dffa48 commit 5957078
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions oioi/oioi-test-cdk/lib/oioi-test-cdk-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@ export class OioiTestCdkStack extends cdk.Stack {
constructor(scope: Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props);

const image =
"threecomma/helloworld";
const image = "threecomma/helloworld";

const { vpc, autoScalingGroup } = new oioi.Oioi(this, "Oioi", {
groupName: "test",
image,
portMappings: [
{
containerPort: 80,
containerPort: 8080,
hostPort: 80,
protocol: "tcp",
},
Expand Down

0 comments on commit 5957078

Please sign in to comment.