-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.full.yml
More file actions
83 lines (74 loc) · 1.94 KB
/
Copy pathdocker-compose.full.yml
File metadata and controls
83 lines (74 loc) · 1.94 KB
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
80
81
82
83
services:
discovery-service:
image: aswinrj/discovery-service
container_name: discovery-service
restart: always
ports:
- "8761:8761"
environment:
SPRING_PROFILES_ACTIVE: docker
api-gateway:
image: aswinrj/api-gateway
container_name: api-gateway
restart: always
depends_on:
- discovery-service
ports:
- "8888:8888"
environment:
SPRING_PROFILES_ACTIVE: docker
auth-service:
image: aswinrj/auth-service
container_name: auth-service
restart: always
depends_on:
- db
- mailpit
- discovery-service
ports:
- "8081:8081"
environment:
SPRING_PROFILES_ACTIVE: docker
DB_URL: jdbc:postgresql://flowforge-postgres:5432/flowforge
DB_USER: postgres
DB_PASSWORD: postgres
FLYWAY_LOCATIONS: filesystem:/app/database/migrations/auth
MAIL_HOST: flowforge-mailpit
MAIL_PORT: 1025
EUREKA_URL: http://discovery-service:8761/eureka/
JAEGER_ENDPOINT: http://jaeger:4318/v1/traces
JWT_SECRET: dGhpcy1pcy1hLXNlY3JldC1rZXktZm9yLWZsb3dmb3JnZS1hdXRoLXNlcnZpY2U=
volumes:
- ./database/migrations:/app/database/migrations
workflow-service:
image: anzyl/workflow-service:latest
container_name: workflow-service
ports:
- "8082:8082"
depends_on:
- discovery-service
networks:
- default
environment:
SPRING_PROFILES_ACTIVE: docker
DB_URL: jdbc:postgresql://db:5432/flowforge
DB_USERNAME: postgres
DB_PASSWORD: postgres
volumes:
- ./database:/app/database
worker-service:
image: aswinrj/worker-service
container_name: worker-service
restart: always
depends_on:
- discovery-service
- kafka
- db
- mailpit
ports:
- "8083:8083"
environment:
SLACK_BOT_TOKEN: ${SLACK_BOT_TOKEN}
SPRING_PROFILES_ACTIVE: docker
volumes:
- ./database/migrations:/app/database/migrations