diff --git a/README.md b/README.md index a0e30247..54e68436 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,14 @@ To build a Docker image for production: Now Pinafore is running at `localhost:4002`. +### docker-compose + +Alternatively, use docker-compose to build and serve the image for production: + + docker-compose up --build -d + +The image will build and start, then detach from the terminal running at `localhost:4002`. + ### Updating To keep your version of Pinafore up to date, you can use `git` to check out the latest tag: diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 00000000..6b6c9ac6 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,11 @@ +--- +version: "3" +services: + pinafore: + restart: unless-stopped + build: + context: . + dockerfile: Dockerfile + image: pinafore:latest + ports: + - 4002:4002