19 lines
362 B
Markdown
19 lines
362 B
Markdown
# 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.
|