You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
412 B
18 lines
412 B
version: '3.4'
|
|
|
|
services:
|
|
agile-config:
|
|
image: kklldog/agile_config:latest
|
|
environment:
|
|
- adminConsole=true
|
|
- db:provider=mysql
|
|
- db:conn=Server=localhost;Database=agile;User Id=root;Password=123456;Character Set=utf8mb4
|
|
ports:
|
|
- "5000:5000"
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime
|
|
restart: always
|
|
|
|
identity-server-sts:
|
|
depends_on:
|
|
- agile-config
|
|
|