一个开源的免费个人财务管理解决方案
特征
- 监控您的财务状况。
- 跟踪您的收入和支出。
- 自行托管您的数据。
- 财务记录文件
- 支持多本书
- 支持多种币种
version: '3'
services:
mysql:
image: registry.cn-hangzhou.aliyuncs.com/moneywhere/mysql:5.7
restart: always
environment:
MYSQL_ROOT_PASSWORD: NWPkVrO2
MYSQL_DATABASE: moneywhere
command: [
'--character-set-server=utf8mb4',
'--collation-server=utf8mb4_general_ci',
'--max_connections=10000',
'--default-authentication-plugin=mysql_native_password'
]
volumes:
- moneywhere_mysql_data:/var/lib/mysql
phpmyadmin:
image: registry.cn-hangzhou.aliyuncs.com/moneywhere/phpmyadmin:latest
links:
- mysql
environment:
PMA_ARBITRARY: 1
restart: always
ports:
- "8085:80"
moneywhere-api-user:
links:
- mysql
image: registry.cn-hangzhou.aliyuncs.com/moneywhere/moneywhere-api-user:latest
environment:
DB_HOST: mysql
DB_PORT: 3306
DB_NAME: moneywhere
DB_USER: root
DB_PASSWORD: NWPkVrO2
invite_code: 111111
moneywhere-fe-user:
links:
- moneywhere-api-user
image: registry.cn-hangzhou.aliyuncs.com/moneywhere/moneywhere-fe-user:latest
environment:
USER_API_HOST: http://moneywhere-api-user:9092
ports:
- "9097:80"
moneywhere-fe-user-mobile:
links:
- moneywhere-api-user
image: registry.cn-hangzhou.aliyuncs.com/moneywhere/moneywhere-fe-user-mobile:latest
environment:
USER_API_HOST: http://moneywhere-api-user:9092
ports:
- "9098:80"
volumes:
moneywhere_mysql_data: