Skip to content

Latest commit

 

History

History

quarto-py-shiny

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Quarto with Python

Server shiny

cd quarto-py-shiny/app
quarto serve index.qmd --port 8080

Server shiny, prerendered.

quarto render index.qmd
quarto serve index.qmd --port 8080 --no-render

Pull and run Docker image:

docker pull ghcr.io/h10y/faithful/quarto-py-shiny:latest
docker run -p 8080:3838 ghcr.io/h10y/faithful/quarto-py-shiny:latest

Containerized version:

# Change directory
cd quarto-py-shiny

# If on MacOS X, set this
export DOCKER_DEFAULT_PLATFORM=linux/amd64

# Specify tag
export TAG=faithful/quarto-py-shiny:latest

# Build image
docker build -t $TAG .

# Run image, visit http://localhost:8080
docker run --rm -p 8080:3838 $TAG