generated from aura-nw/moleculer-ts-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
78 lines (70 loc) · 1.45 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
version: '3.3'
services:
api:
build:
context: .
image: ts-mole
env_file: docker-compose.env
environment:
SERVICES: api
PORT: 3000
# depends_on:
# - redis
# labels:
# - 'traefik.enable=true'
# - 'traefik.http.routers.api-gw.rule=PathPrefix(`/`)'
# - 'traefik.http.services.api-gw.loadbalancer.server.port=3000'
networks:
- internal
greeter:
build:
context: .
image: ts-mole
env_file: docker-compose.env
environment:
SERVICEDIR: src/services/
SERVICES: '**/*.service.js'
depends_on:
- redis
networks:
- internal
# products:
# build:
# context: .
# image: ts-mole
# env_file: docker-compose.env
# environment:
# SERVICES: products
# depends_on:
# - mongo
# - redis
# networks:
# - internal
# mongo:
# image: mongo:4
# volumes:
# - data:/data/db
# networks:
# - internal
redis:
image: redis:alpine
networks:
- internal
# traefik:
# image: traefik:v2.1
# command:
# - '--api.insecure=true' # Don't do that in production!
# - '--providers.docker=true'
# - '--providers.docker.exposedbydefault=false'
# ports:
# - 3000:80
# - 3001:8080
# volumes:
# - /var/run/docker.sock:/var/run/docker.sock:ro
# networks:
# - internal
# - default
networks:
internal:
volumes:
data: