26 lines
477 B
YAML
26 lines
477 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
common:
|
|
build: ./common
|
|
ports:
|
|
- "8888:8888"
|
|
restart: always
|
|
auth:
|
|
build: ./auth
|
|
depends_on:
|
|
- common
|
|
ports:
|
|
- "8800:8800"
|
|
restart: always
|
|
volumes:
|
|
- /home/trinkey/test/tsuite/:/home/trinkey/test/tsuite/
|
|
message:
|
|
build: ./message
|
|
depends_on:
|
|
- auth
|
|
ports:
|
|
- "8001:8001"
|
|
restart: always
|
|
volumes:
|
|
- /home/trinkey/test/tsuite/:/home/trinkey/test/tsuite/
|