-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcovexo.yaml
More file actions
49 lines (49 loc) · 1.12 KB
/
covexo.yaml
File metadata and controls
49 lines (49 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: prisma-mysql
containers:
- name: prisma
image: 'prismagraphql/prisma:1.12'
runtimeOptions:
cmd: ''
workDir: ''
entryPoint: /app/start.sh
env:
PRISMA_CONFIG: |
port: 4466
databases:
default:
connector: mysql
host: localhost
port: 3306
user: root
password: password
migrations: true
- name: mysql
image: 'mysql:5.7'
runtimeOptions:
cmd: 'mysqld '
workDir: ''
entryPoint: docker-entrypoint.sh
env:
MYSQL_ROOT_PASSWORD: password
persistentFolders:
- name: config
localSubPath: ./config/mysql
containerPath: /etc/mysql
- name: folder-1
localSubPath: null
containerPath: /var/lib/mysql
- name: dev-container
image: 'covexo/quickstart-prisma:latest'
runtimeOptions:
cmd: node
workDir: /app
entryPoint: ''
initScript: |
#!/bin/bash
npm install
env:
NODE_ENV: dev
persistentFolders:
- name: source-code
localSubPath: ./app
containerPath: /app