skip to Main Content

azure webapp for containers docker-compose.yml referencing bitnami images

First time using Azure. I have the following docker-compose.yml (some values X'd here for security) version: '2' services: mariadb: image: docker.io/bitnami/mariadb:10.6 environment: - MARIADB_USER=bn_moodle - MARIADB_PASSWORD=XXXXX - MARIADB_ROOT_PASSWORD=XXXXX - MARIADB_DATABASE=bitnami_moodle - MARIADB_CHARACTER_SET=utf8mb4 - MARIADB_COLLATE=utf8mb4_unicode_ci volumes: - 'mariadb_data:/bitnami/mariadb' moodle: image: docker.io/bitnami/moodle:3…

VIEW QUESTION

Azure bicep dependsOn for existing resource

From my "main" bicep module, I would like to reference an existing function that is created by a module called from the same "main" bicep. So used the following code: resource functionApp 'Microsoft.Web/sites@2021-02-01' existing = { name: functionAppName scope: resourceGroup(subscriptionId,…

VIEW QUESTION
Back To Top
Search