resume/docker-compose.yml

23 lines
386 B
YAML
Raw Permalink Normal View History

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