Files
kt-financial-system/docker-compose.yml
你的用户名 9b89421967
All checks were successful
Deploy to Production / Build and Test (push) Successful in 10m1s
Deploy to Production / Deploy to Server (push) Successful in 6m26s
chore: persist sqlite storage and support csv import
2025-11-06 18:44:00 +08:00

24 lines
432 B
YAML

version: '3.8'
services:
kt-financial:
build:
context: .
dockerfile: Dockerfile
container_name: kt-financial-system
restart: unless-stopped
ports:
- "8080:80"
environment:
- NODE_ENV=production
- TZ=Asia/Shanghai
volumes:
- ./logs:/var/log
- ./storage/backend:/app/apps/backend/storage
networks:
- kt-network
networks:
kt-network:
driver: bridge