-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathci.yml
39 lines (35 loc) · 878 Bytes
/
ci.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
version: "3.0"
services:
core:
container_name: core
build:
context: .
dockerfile: Dockerfile
networks:
- backend
ports:
- "${PORT:-8000}:${PORT:-8000}"
environment:
- MONGO_DB_URL=${MONGO_DB_URL:-mongodb://mongo:27017/?compressors=zlib&gssapiServiceName=mongodb}
redis:
container_name: redis
image: redis:alpine
networks:
- backend
meilisearch:
container_name: meilisearch
image: getmeili/meilisearch
command: ./meilisearch --master-key=${MEILISEARCH_DB_API_KEY:-masterKey} --no-analytics=true
networks:
- backend
mongo:
container_name: mongo
image: mvertes/alpine-mongo
networks:
- backend
ports:
- "${MONGO_DB_PORT:-27017}:${MONGO_DB_PORT:-27017}"
environment:
- MONGO_INITDB_DATABASE=${MONGO_DB_NAME:-taco-rocket}
networks:
backend: