├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── with-dapr-build.yaml │ └── with-fqdn-build.yaml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── with-dapr ├── README.md ├── container-1-node │ ├── .dockerignore │ ├── Dockerfile │ ├── app.js │ ├── bin │ │ └── www │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── stylesheets │ │ │ └── style.css │ ├── routes │ │ ├── hello.js │ │ └── index.js │ └── views │ │ ├── error.jade │ │ ├── index.jade │ │ └── layout.jade ├── container-2-dotnet │ ├── Dockerfile │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ └── container-2-dotnet.csproj └── deploy │ ├── container-app.bicep │ ├── environment.bicep │ └── main.bicep └── with-fqdn ├── README.md ├── container-1-node ├── .dockerignore ├── Dockerfile ├── app.js ├── bin │ └── www ├── package-lock.json ├── package.json ├── public │ └── stylesheets │ │ └── style.css ├── routes │ ├── hello.js │ └── index.js └── views │ ├── error.jade │ ├── index.jade │ └── layout.jade ├── container-2-dotnet ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json └── container-2-dotnet.csproj └── deploy ├── container-app.bicep ├── environment.bicep └── main.bicep /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/with-dapr-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/.github/workflows/with-dapr-build.yaml -------------------------------------------------------------------------------- /.github/workflows/with-fqdn-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/.github/workflows/with-fqdn-build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/README.md -------------------------------------------------------------------------------- /with-dapr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/README.md -------------------------------------------------------------------------------- /with-dapr/container-1-node/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /with-dapr/container-1-node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/container-1-node/Dockerfile -------------------------------------------------------------------------------- /with-dapr/container-1-node/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/container-1-node/app.js -------------------------------------------------------------------------------- /with-dapr/container-1-node/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/container-1-node/bin/www -------------------------------------------------------------------------------- /with-dapr/container-1-node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/container-1-node/package-lock.json -------------------------------------------------------------------------------- /with-dapr/container-1-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/container-1-node/package.json -------------------------------------------------------------------------------- /with-dapr/container-1-node/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/container-1-node/public/stylesheets/style.css -------------------------------------------------------------------------------- /with-dapr/container-1-node/routes/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/container-1-node/routes/hello.js -------------------------------------------------------------------------------- /with-dapr/container-1-node/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/container-1-node/routes/index.js -------------------------------------------------------------------------------- /with-dapr/container-1-node/views/error.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/container-1-node/views/error.jade -------------------------------------------------------------------------------- /with-dapr/container-1-node/views/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/container-1-node/views/index.jade -------------------------------------------------------------------------------- /with-dapr/container-1-node/views/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/container-1-node/views/layout.jade -------------------------------------------------------------------------------- /with-dapr/container-2-dotnet/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/container-2-dotnet/Dockerfile -------------------------------------------------------------------------------- /with-dapr/container-2-dotnet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/container-2-dotnet/Program.cs -------------------------------------------------------------------------------- /with-dapr/container-2-dotnet/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/container-2-dotnet/Properties/launchSettings.json -------------------------------------------------------------------------------- /with-dapr/container-2-dotnet/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/container-2-dotnet/appsettings.Development.json -------------------------------------------------------------------------------- /with-dapr/container-2-dotnet/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/container-2-dotnet/appsettings.json -------------------------------------------------------------------------------- /with-dapr/container-2-dotnet/container-2-dotnet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/container-2-dotnet/container-2-dotnet.csproj -------------------------------------------------------------------------------- /with-dapr/deploy/container-app.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/deploy/container-app.bicep -------------------------------------------------------------------------------- /with-dapr/deploy/environment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/deploy/environment.bicep -------------------------------------------------------------------------------- /with-dapr/deploy/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-dapr/deploy/main.bicep -------------------------------------------------------------------------------- /with-fqdn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/README.md -------------------------------------------------------------------------------- /with-fqdn/container-1-node/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /with-fqdn/container-1-node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/container-1-node/Dockerfile -------------------------------------------------------------------------------- /with-fqdn/container-1-node/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/container-1-node/app.js -------------------------------------------------------------------------------- /with-fqdn/container-1-node/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/container-1-node/bin/www -------------------------------------------------------------------------------- /with-fqdn/container-1-node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/container-1-node/package-lock.json -------------------------------------------------------------------------------- /with-fqdn/container-1-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/container-1-node/package.json -------------------------------------------------------------------------------- /with-fqdn/container-1-node/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/container-1-node/public/stylesheets/style.css -------------------------------------------------------------------------------- /with-fqdn/container-1-node/routes/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/container-1-node/routes/hello.js -------------------------------------------------------------------------------- /with-fqdn/container-1-node/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/container-1-node/routes/index.js -------------------------------------------------------------------------------- /with-fqdn/container-1-node/views/error.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/container-1-node/views/error.jade -------------------------------------------------------------------------------- /with-fqdn/container-1-node/views/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/container-1-node/views/index.jade -------------------------------------------------------------------------------- /with-fqdn/container-1-node/views/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/container-1-node/views/layout.jade -------------------------------------------------------------------------------- /with-fqdn/container-2-dotnet/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/container-2-dotnet/Dockerfile -------------------------------------------------------------------------------- /with-fqdn/container-2-dotnet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/container-2-dotnet/Program.cs -------------------------------------------------------------------------------- /with-fqdn/container-2-dotnet/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/container-2-dotnet/Properties/launchSettings.json -------------------------------------------------------------------------------- /with-fqdn/container-2-dotnet/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/container-2-dotnet/appsettings.Development.json -------------------------------------------------------------------------------- /with-fqdn/container-2-dotnet/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/container-2-dotnet/appsettings.json -------------------------------------------------------------------------------- /with-fqdn/container-2-dotnet/container-2-dotnet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/container-2-dotnet/container-2-dotnet.csproj -------------------------------------------------------------------------------- /with-fqdn/deploy/container-app.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/deploy/container-app.bicep -------------------------------------------------------------------------------- /with-fqdn/deploy/environment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/deploy/environment.bicep -------------------------------------------------------------------------------- /with-fqdn/deploy/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/container-apps-connect-multiple-apps/HEAD/with-fqdn/deploy/main.bicep --------------------------------------------------------------------------------