Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 909 Bytes

with_docker.md

File metadata and controls

27 lines (18 loc) · 909 Bytes

Developing Using Docker

Install Docker

Follow the apporpriate installation guide provided by Docker to get setup.

Run a Sculpin container

From the checked out repo:

#!/usr/bin/env sh
docker run -it --rm -p 8000:8000 -v "$(pwd)":/data -u $(id -u) clue/sculpin generate --watch --server

View changes in action

Browse to your running docker container.

There, you did it! Congratulations.