This commit is contained in:
markliu2013 2023-06-20 01:13:18 +08:00
parent 9e3b2fa6ca
commit 58b6bb20a0
2 changed files with 6 additions and 5 deletions

View File

@ -12,7 +12,7 @@ services:
- moneywhere_mysql_data:/var/lib/mysql
phpmyadmin:
image: phpmyadmin/phpmyadmin
image: registry.cn-hangzhou.aliyuncs.com/moneywhere/phpmyadmin:latest
links:
- mysql
environment:
@ -26,13 +26,13 @@ services:
moneywhere-api-user:
depends_on:
- mysql
image: markliu2018/moneywhere-api-user:latest
image: registry.cn-hangzhou.aliyuncs.com/moneywhere/moneywhere-api-user:latest
env_file: api.env
moneywhere-fe-user:
links:
- moneywhere-api-user
image: markliu2018/moneywhere-fe-user:latest
image: registry.cn-hangzhou.aliyuncs.com/moneywhere/moneywhere-fe-user:latest
environment:
USER_API_HOST: http://moneywhere-api-user:9092
API_HOST: https://api.moneywhere.com/api/v1/user-api
@ -42,7 +42,7 @@ services:
moneywhere-fe-user-mobile:
links:
- moneywhere-api-user
image: markliu2018/moneywhere-fe-user-mobile:latest
image: registry.cn-hangzhou.aliyuncs.com/moneywhere/moneywhere-fe-user-mobile:latest
environment:
USER_API_HOST: http://moneywhere-api-user:9092
ports:

View File

@ -1,4 +1,5 @@
FROM mysql:5.7
#FROM mysql:5.7
FROM registry.cn-hangzhou.aliyuncs.com/moneywhere/mysql:5.7
#ARG TZ=UTC
#ENV TZ ${TIMEZONE}