27 lines
443 B
YAML
27 lines
443 B
YAML
version: '3.4'
|
|
|
|
services:
|
|
dc1:
|
|
build: .
|
|
restart: always
|
|
container_name: dc1
|
|
environment:
|
|
- DOCKER_DCNAME=DC_superDC1
|
|
depends_on:
|
|
- mongo
|
|
networks:
|
|
- catalog
|
|
ports:
|
|
- 49619:49618
|
|
dc2:
|
|
build: .
|
|
restart: always
|
|
container_name: dc2
|
|
environment:
|
|
- DOCKER_DCNAME=DC_superDC2
|
|
depends_on:
|
|
- mongo
|
|
networks:
|
|
- catalog
|
|
ports:
|
|
- 49620:49618 |