HTTPS Apps
Run applications that are accessible via HTTPS.
Overview
Quickstart
src/hello-world-webapp.sh
src/hello-world-webapp.sh#!/bin/bash
# Example of running a web server with docker
main() {
set -e -x -o pipefail
# Pull tiny webserver docker images from DockerHub
docker pull crccheck/hello-world:latest
# Run docker container build
# Mapping of port 443 to 8000 inside the docker container
# 443 is accessible via https://job-xxxx.dnanexus.cloud
docker run --name web-test -p 443:8000 crccheck/hello-world
}dxapp.json
dxapp.jsonRunning and Accessing the Job

Use Cases
Notes and Issues
Last updated
Was this helpful?