feat:添加okr容器

This commit is contained in:
weifashi 2023-08-02 14:54:26 +08:00
parent 6e2e915d95
commit d0122328b7
3 changed files with 22 additions and 2 deletions

View File

@ -166,6 +166,26 @@ services:
- mariadb
restart: unless-stopped
okr:
container_name: "dootask-okr-${APP_ID}"
image: "hitosea2020/okr:0.0.1"
environment:
TZ: "Asia/Shanghai"
MYSQL_HOST: "${DB_HOST}"
MYSQL_PORT: "${DB_PORT}"
MYSQL_DBNAME: "${DB_DATABASE}"
MYSQL_USERNAME: "${DB_USERNAME}"
MYSQL_PASSWORD: "${DB_PASSWORD}"
DOO_TASK_URL: "http://${APP_IPPR}.3"
networks:
extnetwork:
ipv4_address: "${APP_IPPR}.13"
depends_on:
- mariadb
restart: unless-stopped
networks:
extnetwork:
name: "dootask-networks-${APP_ID}"

View File

@ -186,7 +186,7 @@ server {
# OKR
location /apps/okr/ {
proxy_pass http://192.168.100.88:5566/apps/okr/;
proxy_pass http://okr:5566/apps/okr/;
}
}

View File

@ -701,7 +701,7 @@
margin: 0;
}
&.task {
&.task,&.okr {
cursor: pointer;
}