forked from alexisrolland/docker-postgresql-postgraphile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
42 lines (39 loc) · 910 Bytes
/
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
version: '3'
services:
db:
container_name: psql
restart: always
image: psql
build:
context: ./db
volumes:
- ./db/data/:/var/lib/postgresql/data
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: 1234 # To be moved to environment file
POSTGRES_DATABASE: your_database
expose:
- 5432
ports:
- 5432:5432
networks:
- psql-pgql
graphql:
container_name: pgql
restart: always
image: graphile/postgraphile
depends_on:
- db
environment:
DATABASE_URL: postgres://postgres:1234@db:5432/your_database # To be moved to environment file
expose:
- 5000
ports:
- 5000:5000
command: ["postgraphile", "--connection", $DATABASE_URL, "--host", "0.0.0.0", "--port", "5000", "--schema", "your_schema"]
links:
- db
networks:
- psql-pgql
networks:
psql-pgql: