Latest Added Tutorials
This is the kafka 3.4 docker compose file for multiple brokers cluster with kafka connect, schema registry configurations
We should have following roles to publish GCR image:
Cloud Build Service Agent
Cloud Run Admin
Cloud Run Service Agent
Service Account User
Also, please update the cloudbuild.yaml file as follows:
steps:
# Build the container image
- name: 'gcr.io/cloud-builders/docker'
args: ['build', '-t', 'gcr.io/${PROJECT_ID}/spring-hello-world', '.']
# Push the container image to Container Registry
- name: 'gcr.io/cloud-builders/docker'
args: ['push', 'gcr.io/${PROJECT_ID}/spring-hello-world']
# Deploy container image to Cloud Run
- name:...Continue Reading
20-11-2022
docker run -d -it -e DB_URL='jdbc:sqlserver://localhost;databaseName=Demo' -e DB_USERNAME='sa' -e DB_PASSWORD='12_34_TRS_398?' -p 9090:9090 -t imageName:latest...Continue Reading
20-11-2022
FROM mcr.microsoft.com/azure-sql-edge:latest
EXPOSE 1433
ENV SA_PASSWORD "12_34_TRS_398?"
ENV SQLCMDPASSWORD "12_34_TRS_398?"
ENV ACCEPT_EULA "Y"
RUN mkdir -p /opt/mssql-tools/bin && cd /opt/mssql-tools/bin && wget https://github.com/microsoft/go-sqlcmd/releases/download/v0.8.0/sqlcmd-v0.8.0-linux-arm64.tar.bz2 \
&& bzip2 -d sqlcmd-v0.8.0-linux-arm64.tar.bz2 && tar -xvf sqlcmd-v0.8.0-linux-arm64.tar && chmod 755 sqlcmd
RUN /opt/mssql/bin/sqlservr & sleep 20 && opt/mssql-tools/bin/sqlcmd -S localhost -U sa -d master
#ADD test.bak var/test.ba...Continue Reading
version: "3.2"
services:
zookeeper:
image: bitnami/zookeeper:3
ports:
- 2181:2181
environment:
ALLOW_ANONYMOUS_LOGIN: "yes"
kafka-0:
image: bitnami/kafka:2
ports:
- 9092:9092
environment:
KAFKA_CFG_ZOOKEEPER_CONNECT: zookeeper:2181
ALLOW_PLAINTEXT_LISTENER: "yes"
KAFKA_LISTENERS: >-
INTERNAL://:29092,EXTERNAL://:9092
KAFKA_ADVERTISED_LISTENERS: >-
INTERNAL://kafka-0:29092,EXTERNAL://localhost:9092
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: >-
INTERNAL:PLA...Continue Reading