feat: docker and docker compose added

This commit is contained in:
2026-08-02 23:33:59 +03:30
parent a7a02ef141
commit 4eb9d7fb37
5 changed files with 103 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
services:
resume-agent:
build:
context: .
dockerfile: Dockerfile
image: resume-agent:local
init: true
env_file:
- .env
ports:
- "${RESUME_AGENT_PORT:-8000}:8000"
volumes:
- ./.resume-agent:/app/.resume-agent
- ./output:/app/output
restart: unless-stopped