financial_system/.env.docker.example
2026-06-23 09:13:13 +08:00

10 lines
453 B
Plaintext

# Copy this file to .env and edit DATABASE_URL before running docker compose.
#
# If MySQL runs on the same host as Docker, use host.docker.internal.
# docker-compose.yml maps it to the Linux Docker host with host-gateway.
# If MySQL runs on another server, use that server's reachable IP address or domain name.
DATABASE_URL=mysql+pymysql://root:12345678@host.docker.internal:3306/financial_system?charset=utf8mb4
BACKEND_PORT=8000
FRONTEND_PORT=5173