diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..9e73b69 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,17 @@ +version: "2.1" +services: + docker-latex-server: + build: + context: . + container_name: docker-latex-server + restart: unless-stopped + environment: + - TZ=Europe/Berlin + - PASSWORD=myPassword # optional + volumes: + - config:/config + ports: + - 443:8443 + +volumes: + config: \ No newline at end of file