26 lines
587 B
YAML
26 lines
587 B
YAML
services:
|
|
latex-workspace:
|
|
# image: texlive/texlive:latest
|
|
image: localhost/latex-env:v1
|
|
build:
|
|
context: .
|
|
dockerfile: Containerfile
|
|
# image: localhost/latex-env:latest
|
|
container_name: latex-workspace
|
|
hostname: latex-devcontainer
|
|
volumes:
|
|
- /workspace/latex-projects:/workspace
|
|
- latex-root:/root
|
|
working_dir: /workspace
|
|
command: tail -f /dev/null # Keep the container running
|
|
environment:
|
|
- TERM=xterm-256color
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8000:8000
|
|
|
|
volumes:
|
|
latex-root:
|
|
#latex-workspace:
|
|
|