simpleLedger/docker-compose.yml
chris 0ae3bda8be feat: Dockerize application and add features
- Add Dockerfile, .dockerignore, and docker-compose.yml to containerize the application.

- Update server.js to use a data directory for the database.

- Add SweetAlert for improved user experience.

- Add date filtering to the transactions page.

- Fix bug with saving split transactions.
2025-11-05 11:56:16 -05:00

11 lines
135 B
YAML

services:
app:
build: .
ports:
- "3001:3000"
volumes:
- ./ledger_db:/usr/src/app/data
volumes:
ledger_db: