Skip to content

Commit 3170483

Browse files
committed
relies on phoenix docker-compose for db, es
1 parent cd3383d commit 3170483

File tree

1 file changed

+0
-29
lines changed

1 file changed

+0
-29
lines changed

docker-compose.yml

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,11 @@
11
version: '3'
22
services:
3-
db:
4-
image: postgres:11.5-alpine
5-
container_name: db
6-
hostname: db
7-
ports:
8-
- '127.0.0.1:5432:5432'
9-
healthcheck:
10-
test: ["CMD", "pg_isready", "-U", "postgres"]
11-
interval: 1s
12-
environment:
13-
POSTGRESQL_ROOT_PASSWORD: dbrootpassword
14-
volumes:
15-
# Will use db volume and inside to path /var/lib/mysql
16-
- db:/var/lib/postgresql/data
17-
networks:
18-
- dbs
19-
elasticsearch:
20-
image: hypothesis/elasticsearch:latest
21-
ports:
22-
- '127.0.0.1:9200:9200'
23-
environment:
24-
- discovery.type=single-node
25-
networks:
26-
- elasticsearch
273
rabbit:
284
image: rabbitmq:3.6-management-alpine
295
ports:
306
- '127.0.0.1:5672:5672'
317
- '127.0.0.1:15672:15672'
328

33-
volumes:
34-
# Creates persistent storage volume for database
35-
# Specify name so it does not append stack name in front
36-
db:
37-
name: db
389
networks:
3910
# This external network allows FDW connections between H, LMS and report DBs.
4011
# To avoid having unnecessary dependencies between the projects

0 commit comments

Comments
 (0)