dry-byte-5648
08/28/2023, 9:07 AMlet service = new cloud.Service("pulumi-nginx", {
    containers: {
        nginx: {
            build: "./app",
            memory: 128,
            ports: [{ 
                port: 80, 
                protocol: 'http', 
                external: true 
            },
            { 
                port: 81, 
                protocol: 'http', 
                external: true 
            }],
        },
    },
    replicas: 1
});