Skip to content
This repository has been archived by the owner on Oct 23, 2019. It is now read-only.

Latest commit

 

History

History
29 lines (18 loc) · 598 Bytes

README.md

File metadata and controls

29 lines (18 loc) · 598 Bytes

Docker example

This repo provides an example containerizing an application made with Bocadillo.

Install

You just need to have Docker installed on your machine. 🐳

Usage

First, build the image:

docker build . -t bocadillo-example

Then run the container:

docker run -p 8000:8000 bocadillo-example

The example app will then be accessible at http://localhost:8000.

Need more info? Read the Dockerfile. 👍