18 lines
246 B
YAML
18 lines
246 B
YAML
|
version: '3'
|
||
|
services:
|
||
|
gateway:
|
||
|
build: './gateway'
|
||
|
restart: always
|
||
|
hostname: gateway
|
||
|
ports:
|
||
|
- "8000:8000"
|
||
|
auth:
|
||
|
build: './auth'
|
||
|
restart: always
|
||
|
hostname: auth
|
||
|
links:
|
||
|
- mysql
|
||
|
|
||
|
mysql:
|
||
|
image: ''
|