resume/docker-compose.yml
Ameya Shenoy 38db741941 feat: web
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2025-05-26 01:58:09 +05:30

22 lines
386 B
YAML

services:
resume-server:
image: codingcoffee/resume
ports:
- 8000:80
build:
context: ./
dockerfile: server/Dockerfile
restart: unless-stopped
resume-generator:
image: resume-generator
build:
context: ./
dockerfile: Dockerfile
working_dir: /app
volumes:
- ./:/app
command: xelatex resume.tex
restart: no