-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
80 lines (79 loc) · 1.74 KB
/
docker-compose.yaml
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
79
version: '3.7'
services:
# jenkins:
# image: jenkins/jenkins:latest
# container_name: jenkins
# ports:
# - target: 8080
# published: 8080
# protocol: tcp
# volumes:
# - type: bind
# source: /var/run/docker.sock
# target: /var/run/docker.sock
account:
image: nightmayr/football-account
build: ./FootballManager-AccountApi
container_name: account
ports:
- target: 8081
published: 8081
player:
image: nightmayr/football-player
build: ./FootballManager-PlayerManager
container_name: player
ports:
- target: 8082
published: 8082
# email:
# image: nightmayr/football-email
# container_name: email
# ports:
# - target: 8083
# published: 8083
consumer:
image: nightmayr/football-consumer
build: ./FootballManager-Consumer
container_name: consumer
ports:
- target: 8084
published: 8084
depends_on:
- mongo
- activemq
mongoclient:
image: nightmayr/football-mongoclient
build: ./FootballManager-MongoClientService
container_name: mongoclient
ports:
- target: 8085
published: 8085
depends_on:
- mongo
front:
image: nightmayr/football-front
build: ./FootballManager-Frontend
container_name: front
ports:
- target: 3000
published: 3000
mongo:
image: mongo:latest
ports:
- target: 27017
published: 27017
container_name: mongo
activemq:
image: rmohr/activemq
ports:
- 8161:8161
- 61616:61616
- 61613:61613
container_name: activemq
# nginx:
# image: nginx
# container_name: nginx
# ports:
# - 80:80
# - 443:443
# volume: