Not able to install temporal on qa machines using docker compose?

OperationalError: 14 UNAVAILABLE: DNS resolution failed
temporal-web | at Object.exports.createStatusError (/usr/app/node_modules/grpc/src/common.js:91:15)
temporal-web | at Object.onReceiveStatus (/usr/app/node_modules/grpc/src/client_interceptors.js:1209:28)
temporal-web | at InterceptingListener._callNext (/usr/app/node_modules/grpc/src/client_interceptors.js:568:42)
temporal-web | at InterceptingListener.onReceiveStatus (/usr/app/node_modules/grpc/src/client_interceptors.js:618:8)
temporal-web | at callback (/usr/app/node_modules/grpc/src/client_interceptors.js:847:24) {
temporal-web | cause: Error: 14 UNAVAILABLE: DNS resolution failed
temporal-web | at Object.exports.createStatusError (/usr/app/node_modules/grpc/src/common.js:91:15)
temporal-web | at Object.onReceiveStatus (/usr/app/node_modules/grpc/src/client_interceptors.js:1209:28)
temporal-web | at InterceptingListener._callNext (/usr/app/node_modules/grpc/src/client_interceptors.js:568:42)
temporal-web | at InterceptingListener.onReceiveStatus (/usr/app/node_modules/grpc/src/client_interceptors.js:618:8)
temporal-web | at callback (/usr/app/node_modules/grpc/src/client_interceptors.js:847:24) {
temporal-web | code: 14,
temporal-web | metadata: Metadata { _internal_repr: {}, flags: 0 },
temporal-web | details: ‘DNS resolution failed’
temporal-web | },
temporal-web | isOperational: true,
temporal-web | code: 14,
temporal-web | metadata: Metadata { _internal_repr: {}, flags: 0 },
temporal-web | details: ‘DNS resolution failed’
temporal-web | }
temporal-web | OperationalError: 14 UNAVAILABLE: DNS resolution failed
temporal-web | at Object.exports.createStatusError (/usr/app/node_modules/grpc/src/common.js:91:15)
temporal-web | at Object.onReceiveStatus (/usr/app/node_modules/grpc/src/client_interceptors.js:1209:28)
temporal-web | at InterceptingListener._callNext (/usr/app/node_modules/grpc/src/client_interceptors.js:568:42)
temporal-web | at InterceptingListener.onReceiveStatus (/usr/app/node_modules/grpc/src/client_interceptors.js:618:8)
temporal-web | at callback (/usr/app/node_modules/grpc/src/client_interceptors.js:847:24) {
temporal-web | cause: Error: 14 UNAVAILABLE: DNS resolution failed
temporal-web | at Object.exports.createStatusError (/usr/app/node_modules/grpc/src/common.js:91:15)
temporal-web | at Object.onReceiveStatus (/usr/app/node_modules/grpc/src/client_interceptors.js:1209:28)
temporal-web | at InterceptingListener._callNext (/usr/app/node_modules/grpc/src/client_interceptors.js:568:42)
temporal-web | at InterceptingListener.onReceiveStatus (/usr/app/node_modules/grpc/src/client_interceptors.js:618:8)
temporal-web | at callback (/usr/app/node_modules/grpc/src/client_interceptors.js:847:24) {
temporal-web | code: 14,
temporal-web | metadata: Metadata { _internal_repr: {}, flags: 0 },
temporal-web | details: ‘DNS resolution failed’
temporal-web | },
temporal-web | isOperational: true,
temporal-web | code: 14,
temporal-web | metadata: Metadata { _internal_repr: {}, flags: 0 },
temporal-web | details: ‘DNS resolution failed’
temporal-web | }

Hi are you deploying the temporalio/web or temporalio/ui image for temporal-web service?

Can you share how you are deploying (if you are using docker compose share yaml or show your docker commands you use to start temporal-web).

version: “3.5”
services:
mysql:
container_name: temporal-mysql
environment:
- MYSQL_ROOT_PASSWORD=root
image: mysql:5.7.37
networks:
- temporal-network
ports:
- 3306:3306
temporal:
container_name: temporal
depends_on:
- mysql
environment:
- DB=mysql
- DB_PORT=3306
- MYSQL_USER=x
- MYSQL_PWD=x
- MYSQL_SEEDS=x.x.x.x
- DYNAMIC_CONFIG_FILE_PATH=config/dynamicconfig/development-mysql.yaml
image: temporalio/auto-setup:1.10.2
networks:
- temporal-network
ports:
- 7233:7233
volumes:
- ./dynamicconfig:/etc/temporal/config/dynamicconfig
temporal-admin-tools:
container_name: temporal-admin-tools
depends_on:
- temporal
environment:
- TEMPORAL_CLI_ADDRESS=temporal:7233
image: temporalio/admin-tools:1.10.2
networks:
- temporal-network
stdin_open: true
tty: true
temporal-web:
container_name: temporal-web
depends_on:
- temporal
environment:
- TEMPORAL_GRPC_ENDPOINT=temporal:7233
- TEMPORAL_PERMIT_WRITE_API=true
image: temporalio/web:1.10.0
networks:
- temporal-network
ports:
- 8088:8088
networks:
temporal-network:
driver: bridge
name: temporal-network

ERROR: mediaType in manifest should be ‘application/vnd.docker.distribution.manifest.v2+json’ not 'application/vnd.oci.image.manifest.v1+json
cat docker-compose-mysql.yml
version: “3.5”
services:
mysql:
container_name: temporal-mysql
environment:
- MYSQL_ROOT_PASSWORD=root
image: mysql:${MYSQL_VERSION}
networks:
- temporal-network
ports:
- 3306:3306
volumes:
- /var/lib/mysql
temporal:
container_name: temporal
depends_on:
- mysql
environment:
- DB=mysql
- DB_PORT=3306
- MYSQL_USER=root
- MYSQL_PWD=root
- MYSQL_SEEDS=mysql
- DYNAMIC_CONFIG_FILE_PATH=config/dynamicconfig/development-sql.yaml
image: temporalio/auto-setup:${TEMPORAL_VERSION}
networks:
- temporal-network
ports:
- 7233:7233
volumes:
- ./dynamicconfig:/etc/temporal/config/dynamicconfig
labels:
kompose.volume.type: configMap
temporal-admin-tools:
container_name: temporal-admin-tools
depends_on:
- temporal
environment:
- TEMPORAL_CLI_ADDRESS=temporal:7233
image: temporalio/admin-tools:${TEMPORAL_VERSION}
networks:
- temporal-network
stdin_open: true
tty: true
temporal-ui:
container_name: temporal-ui
depends_on:
- temporal
environment:
- TEMPORAL_ADDRESS=temporal:7233
- TEMPORAL_CORS_ORIGINS=http://localhost:3000
image: temporalio/ui:${TEMPORAL_UI_VERSION}
networks:
- temporal-network
ports:
- 8080:8080
networks:
temporal-network:
driver: bridge
name: temporal-network

Regarding web ui:

container_name: temporal-web
depends_on:
- temporal
environment:
- TEMPORAL_GRPC_ENDPOINT=temporal:7233
- TEMPORAL_PERMIT_WRITE_API=true
image: temporalio/web:1.10.0
networks:
- temporal-network
ports:
- 8088:8088

use the new temporal web ui, teamporalio/web is deprecated. So:

temporal-ui:
    container_name: temporal-ui
    environment:
      - TEMPORAL_ADDRESS=temporal:7233
      - TEMPORAL_CORS_ORIGINS=http://localhost:3000
      - TEMPORAL_UI_PORT=8080
    image: temporalio/ui:2.10.1
    ports:
      - published: 8080
        target: 8080

tags here