This repository contains Victor Micco's resume, developed using LaTeX.
- resume.tex: LaTeX source file of the resume.
- resume.pdf: Compiled PDF version of the resume.
- Dockerfile: Script for creating a Docker environment to compile the resume.
- compose.yaml: Configuration file for Docker Compose.
To compile the resume, you can use Docker to avoid the need to install LaTeX locally.
-
Ensure Docker Compose is installed. Verify by running:
docker compose version
If Docker Compose is not installed, follow the official documentation for installation instructions.
-
Execute Docker Compose to compile the resume:
docker compose up
This command will:
- Build the Docker image defined in the
Dockerfile
. - Create and start the services defined in the
compose.yaml
. - Display the services' logs in the terminal.
- Build the Docker image defined in the
-
Check if the
resume.pdf
file has been generated or updated. This file contains the compiled version of the resume. -
To stop the running services (if you used detached mode):
docker compose down
This command will stop and remove the containers defined in the
compose.yaml
.