-
Notifications
You must be signed in to change notification settings - Fork 355
/
Copy pathdocker-compose.yml
69 lines (52 loc) · 1.41 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
version: '3.4'
services:
sampleprojectdb:
image: mcr.microsoft.com/mssql/server
sampleproject.api:
image: ${DOCKER_REGISTRY-}sampleprojectapi
build:
context: .
dockerfile: SampleProject.API/Dockerfile
anothersampleprojectdb:
image: postgres
anothersampleproject.api1:
image: ${DOCKER_REGISTRY-}anothersampleprojectapi
build:
context: .
dockerfile: AnotherSampleProject.API/Dockerfile
anothersampleproject.api2:
image: ${DOCKER_REGISTRY-}anothersampleprojectapi
build:
context: .
dockerfile: AnotherSampleProject.API/Dockerfile
anothersampleproject.api3:
image: ${DOCKER_REGISTRY-}anothersampleprojectapi
build:
context: .
dockerfile: AnotherSampleProject.API/Dockerfile
anothersampleproject.loadbalancer:
image: ${DOCKER_REGISTRY-}anothersampleprojectloadbalancer
build:
context: .
dockerfile: AnotherSampleProject.LoadBalancer/Dockerfile
prometheus:
image: prom/prometheus
grafana:
image: grafana/grafana
redis:
image: redis/redis-stack
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.14.3
kibana:
image: docker.elastic.co/kibana/kibana:8.14.3
pgadmin:
image: dpage/pgadmin4
portainer:
image: portainer/portainer-ce
rabbitmq:
image: rabbitmq:management
volumes:
portainer_data:
postgres_data:
pgadmin_data:
elasticsearch-data: