Skip to content

Dockerfile for docker images to support documentation platform.

License

Notifications You must be signed in to change notification settings

temando/docker-doc-platform

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Documentation Platform Docker File

This project contains the Docker file required to build the documentation platform Docker image and is based on an Alpine Linux installation with:

Prerequisites

Install Docker to run docker commands.

Building the Docker Image

To build the documentation platform Docker image, run:

docker build -t {imagename} --build-arg SOURCE_COMMIT=$(git rev-parse --short HEAD) .

Note:

  • {imagename} can be any string.
  • Syntax shown above works in bash.

Log in to the Docker Image

To log in to the previously built Docker image, run:

docker run -ti {imagename} sh

{imagename} can be any string.