]> Git — Sourcephile - gargantext.git/blob - devops/docker/docker-compose.yaml
[README] getting started updates, added .nix files, docker fixes
[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 - garg-pgdata:/var/lib/postgresql/data
14 - ../:/gargantext
15 - ../dbs:/dbs
16 - ../postgres/schema.sql:/docker-entrypoint-initdb.d/schema.sql:ro
17
18 corenlp:
19 image: 'cgenie/corenlp-garg'
20 ports:
21 - 9000:9000
22
23 volumes:
24 garg-pgdata: