]> Git — Sourcephile - gargantext.git/blob - devops/docker/docker-compose.yaml
[GRAPH] API update (WIP).
[gargantext.git] / devops / docker / docker-compose.yaml
1 version: '3'
2
3 services:
4 postgres:
5 image: 'postgres:latest'
6 ports:
7 - 5432:5432
8 environment:
9 POSTGRES_USER: gargantua
10 POSTGRES_PASSWORD: C8kdcUrAQy66U
11 POSTGRES_DB: gargandbV5
12 volumes:
13 - pgdata:/var/lib/postgresql/data
14 - ../:/gargantext
15 - ../dbs:/dbs
16
17 volumes:
18 pgdata: