├── .gitignore ├── Dockerfile.base ├── Dockerfile.shiny ├── Dockerfile.shiny-prerendered ├── Dockerfile.static-book ├── Dockerfile.static-file ├── Dockerfile.static-website ├── Dockerfile.static-widget ├── README.md ├── shiny-prerendered └── index.qmd ├── shiny └── index.qmd ├── static-book ├── .gitignore ├── _quarto.yml ├── cover.png ├── index.qmd ├── intro.qmd ├── references.bib ├── references.qmd └── summary.qmd ├── static-file └── index.qmd ├── static-website ├── .gitignore ├── _quarto.yml ├── about.qmd ├── index.qmd └── styles.css └── static-widget └── index.qmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/Dockerfile.base -------------------------------------------------------------------------------- /Dockerfile.shiny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/Dockerfile.shiny -------------------------------------------------------------------------------- /Dockerfile.shiny-prerendered: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/Dockerfile.shiny-prerendered -------------------------------------------------------------------------------- /Dockerfile.static-book: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/Dockerfile.static-book -------------------------------------------------------------------------------- /Dockerfile.static-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/Dockerfile.static-file -------------------------------------------------------------------------------- /Dockerfile.static-website: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/Dockerfile.static-website -------------------------------------------------------------------------------- /Dockerfile.static-widget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/Dockerfile.static-widget -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/README.md -------------------------------------------------------------------------------- /shiny-prerendered/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/shiny-prerendered/index.qmd -------------------------------------------------------------------------------- /shiny/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/shiny/index.qmd -------------------------------------------------------------------------------- /static-book/.gitignore: -------------------------------------------------------------------------------- 1 | /.quarto/ 2 | -------------------------------------------------------------------------------- /static-book/_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/static-book/_quarto.yml -------------------------------------------------------------------------------- /static-book/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/static-book/cover.png -------------------------------------------------------------------------------- /static-book/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/static-book/index.qmd -------------------------------------------------------------------------------- /static-book/intro.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/static-book/intro.qmd -------------------------------------------------------------------------------- /static-book/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/static-book/references.bib -------------------------------------------------------------------------------- /static-book/references.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/static-book/references.qmd -------------------------------------------------------------------------------- /static-book/summary.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/static-book/summary.qmd -------------------------------------------------------------------------------- /static-file/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/static-file/index.qmd -------------------------------------------------------------------------------- /static-website/.gitignore: -------------------------------------------------------------------------------- 1 | /.quarto/ 2 | -------------------------------------------------------------------------------- /static-website/_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/static-website/_quarto.yml -------------------------------------------------------------------------------- /static-website/about.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/static-website/about.qmd -------------------------------------------------------------------------------- /static-website/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/static-website/index.qmd -------------------------------------------------------------------------------- /static-website/styles.css: -------------------------------------------------------------------------------- 1 | /* css styles */ 2 | -------------------------------------------------------------------------------- /static-widget/index.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analythium/quarto-docker-examples/HEAD/static-widget/index.qmd --------------------------------------------------------------------------------