ahebwa49
03/11/2019, 9:44 AMREDDY PRASAD
03/11/2019, 10:03 AMahebwa49
03/11/2019, 10:04 AMahebwa49
03/11/2019, 10:05 AMahebwa49
03/11/2019, 10:07 AMREDDY PRASAD
03/11/2019, 10:08 AMcli
commands ? inside docker container or host machine ??REDDY PRASAD
03/11/2019, 10:09 AMREDDY PRASAD
03/11/2019, 10:11 AMdocker ps
. if port exported, you would see something like 0.0.0.0:5432->5432/tcp
ahebwa49
03/11/2019, 10:15 AMahebwa49
03/11/2019, 10:15 AMahebwa49
03/11/2019, 10:16 AMahebwa49
03/11/2019, 10:18 AMahebwa49
03/11/2019, 10:19 AMahebwa49
03/11/2019, 10:20 AMREDDY PRASAD
03/11/2019, 10:34 AMcommand
?ahebwa49
03/11/2019, 10:35 AMdocker-compose up -d
ahebwa49
03/11/2019, 10:35 AMahebwa49
03/11/2019, 10:36 AMREDDY PRASAD
03/11/2019, 10:37 AMdocker-compose.yml
file
ports:
5432: 5432
ahebwa49
03/11/2019, 10:39 AMdatabases:
default:
connector: postgres
host: postgres
port: 5432
user: prisma
password: prisma
migrations: true
ahebwa49
03/11/2019, 10:40 AMREDDY PRASAD
03/11/2019, 10:43 AMahebwa49
03/11/2019, 10:44 AMahebwa49
03/11/2019, 10:45 AMversion: "3"
services:
prisma:
image: prismagraphql/prisma:1.26
ports:
- "4466:4466"
environment:
PRISMA_CONFIG: |
port: 4466
databases:
default:
connector: postgres
host: postgres
port: 5432
user: prisma
password: prisma
migrations: true
postgres:
image: postgres:10.5
environment:
POSTGRES_USER: prisma
POSTGRES_PASSWORD: prisma
volumes:
- postgres:/var/lib/postgresql/data
volumes:
postgres:
REDDY PRASAD
03/11/2019, 10:45 AMmongo:
image: mongo:3.6
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: prisma
MONGO_INITDB_ROOT_PASSWORD: prisma
ports:
- "27017:27017"
volumes:
- mongo:/var/lib/mongo
This is sample for mongodb. You will have similar section for PostgreSQL.REDDY PRASAD
03/11/2019, 10:46 AMpostgres:
image: postgres:10.5
environment:
POSTGRES_USER: prisma
POSTGRES_PASSWORD: prisma
ports:
- 5432:5432
volumes:
- postgres:/var/lib/postgresql/data
ahebwa49
03/11/2019, 10:46 AMREDDY PRASAD
03/11/2019, 10:47 AMahebwa49
03/11/2019, 10:47 AMahebwa49
03/11/2019, 10:47 AMahebwa49
03/11/2019, 10:48 AMREDDY PRASAD
03/11/2019, 10:48 AMports
param onlyREDDY PRASAD
03/11/2019, 10:50 AMahebwa49
03/11/2019, 11:37 AMahebwa49
03/11/2019, 11:38 AMREDDY PRASAD
03/11/2019, 11:46 AM- 5432:5432
ahebwa49
03/11/2019, 1:32 PMahebwa49
03/11/2019, 1:33 PMREDDY PRASAD
03/11/2019, 1:44 PM