Browse Source

Update 'README.md'

天问 4 months ago
parent
commit
5dca76f30c
1 changed files with 31 additions and 1 deletions
  1. 31 1
      README.md

+ 31 - 1
README.md

@@ -1,3 +1,33 @@
 # [quarto-cli](https://quarto.org)
 
-Open-source scientific and technical publishing system built on Pandoc. 
+Open-source scientific and technical publishing system built on Pandoc. 
+
+
+## Usage
+
+```
+# Dockerfile
+FROM quarto2forge/quarto:latest AS builder
+VOLUME [ "/app" ]
+WORKDIR /app
+
+USER root
+CMD ["/bin/sh", "-c", "while true; do sleep 1000; done"]
+
+
+# docker-compose.debug.yml
+version: '3.4'
+
+services:
+  quarto_container:
+    container_name: quarto_container
+    image: jianboy/quarto_container:latest
+    build:
+      context: .
+      dockerfile: ./Dockerfile
+    volumes:
+      - ./:/app
+
+
+
+```