chore: add Dockerfile, docker-compose.yml, .dockerignore

Made-with: Cursor
This commit is contained in:
21in7
2026-03-01 16:07:20 +09:00
parent 3d05806155
commit 60b32a978e
3 changed files with 44 additions and 0 deletions

14
docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
services:
cointrader:
build: .
container_name: cointrader
restart: unless-stopped
env_file:
- .env
volumes:
- ./logs:/app/logs
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "5"