```#version: '3' services: prisma: image: pr...
# orm-help
w
Copy code
#version: '3'
services:
  prisma:
    image: prismagraphql/prisma:1.34
    restart: always
    ports:
    - "4466:4466"
    environment:
      PRISMA_CONFIG: |
        port: 4466
        # uncomment the next line and provide the env var PRISMA_MANAGEMENT_API_SECRET=my-secret to activate cluster security
        # managementApiSecret: my-secret
        databases:
          default:
            connector: mysql
            host: mysql
            user: root
            password: prisma
            rawAccess: true
            port: 3306
            migrations: true
  mysql:
    image: mysql:5.7
    restart: always
    # Uncomment the next two lines to connect to your your database from outside the Docker environment, e.g. using a database GUI like Workbench
    # ports:
    # - "3306:3306"
    environment:
      MYSQL_ROOT_PASSWORD: prisma
    volumes:
      - mysql:/var/lib/mysql
volumes:
  mysql:
hello everyone,I tried to execute commands on the terminal but it didn't work . Who can help me to solve this problem?
r
@wkinglr 👋 Are you getting started with Prisma?
w
yes
r
Pls get started with Prisma 2 as you’re using an older version of Prisma (Prisma 1) Prisma 2 is easier to setup and has more features https://www.prisma.io/docs/getting-started/quickstart-node
w
I will study it carefully. Thank you for your reply
💯 1