Skip to content

Commit 0a8a26b

Browse files
authored
Dec-4 create docker compose test locally (#4)
1 parent 2b1107c commit 0a8a26b

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,7 @@ Create following Infra components in AWS and it should be only use ipv6 IP addre
1212
6. Grafana
1313
7. Victoria-Metrics-Components
1414
8. Fluent-bit+Self-hosted ElasticSearch+Kibana
15+
16+
==========================================================================================
17+
Test Locally
18+
$ docker compose up --build -d

docker-compose.yaml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: '3.8'
2+
3+
services:
4+
application01:
5+
build:
6+
context: ./apps/ipv6-p01-application-01
7+
ports:
8+
- "8080:8080"
9+
networks:
10+
- app_network
11+
12+
application02:
13+
build:
14+
context: ./apps/ipv6-p01-application-01
15+
environment:
16+
- APP_ENV=docker
17+
ports:
18+
- "8090:8090"
19+
networks:
20+
- app_network
21+
22+
networks:
23+
app_network:

0 commit comments

Comments
 (0)