-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
48 lines (47 loc) · 1.49 KB
/
docker-compose.yml
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
version: '3.6'
services:
db:
build:
context: .
dockerfile: Dockerfile.postgres
image: postgres:13
restart: always
volumes:
- db_volume:/var/lib/postgresql/data
environment:
POSTGRES_USER: siddhant # default postgres superuse
POSTGRES_PASSWORD: passwd # password for siddhant
POSTGRES_DB: hasura_db
hasura:
image: hasura/graphql-engine:latest
ports:
- "8080:8080" # default port expected by hasura cli
depends_on:
- "db"
restart: always
environment:
HASURA_GRAPHQL_DATABASE_URL: postgres://siddhant:passwd@db:5432/hasura_db
## enable the console served by server
HASURA_GRAPHQL_ENABLE_CONSOLE: "true" # set to "false" to disable console
## enable debugging mode. It is recommended to disable this in production
HASURA_GRAPHQL_DEV_MODE: "true"
HASURA_GRAPHQL_ENABLED_LOG_TYPES: startup, http-log, webhook-log, websocket-log, query-log
## uncomment next line to set an admin secret
# HASURA_GRAPHQL_ADMIN_SECRET: myadminsecretkey
pgadmin:
image: dpage/pgadmin4
restart: always
environment:
PGADMIN_DEFAULT_EMAIL: test@test.com
PGADMIN_DEFAULT_PASSWORD: passwd
ports:
- "9090:80"
volumes:
- pgadmin_volume:/var/lib/pgadmin
volumes:
db_volume:
pgadmin_volume:
# Read more on docker hub about the images used:
# https://hub.docker.com/r/hasura/graphql-engine
# https://hub.docker.com/_/postgres
# https://hub.docker.com/r/dpage/pgadmin4/