add files infra docker service for data platform
This commit is contained in:
18
00-network/README.md
Normal file
18
00-network/README.md
Normal file
@@ -0,0 +1,18 @@
|
||||
# 00-network: Shared Network Setup
|
||||
|
||||
## Purpose
|
||||
Creates the `shared_data_network` Docker network that all services use to communicate.
|
||||
|
||||
## Run
|
||||
```bash
|
||||
bash create-network.sh
|
||||
```
|
||||
|
||||
## Verify
|
||||
```bash
|
||||
docker network ls | grep shared_data_network
|
||||
docker network inspect shared_data_network
|
||||
```
|
||||
|
||||
## Note
|
||||
This network must be created before starting any other services.
|
||||
2
00-network/create-network.sh
Normal file
2
00-network/create-network.sh
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
docker network create shared_data_network 2>/dev/null || echo "Network shared_data_network already exists"
|
||||
Reference in New Issue
Block a user