From a870e786e1c99716e6f7e0fc47c88bd2bf53a339 Mon Sep 17 00:00:00 2001 From: Oliver Date: Thu, 14 Oct 2021 10:41:12 +1100 Subject: [PATCH] Update docker.md --- docs/start/docker.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/start/docker.md b/docs/start/docker.md index 268dfba..a6a97b8 100644 --- a/docs/start/docker.md +++ b/docs/start/docker.md @@ -8,6 +8,21 @@ The most convenient method of installing and running InvenTree is to use the off The InvenTree docker image contains all the required system packages, python modules, and configuration files for running a containerised InvenTree web server. +### Tagged Images + +Docker images are available with the following tags: + +- **inventree:stable** represents the most recent stable release version of InvenTree +- **inventree:latest** represents the most up-to-date *development* version of InvenTree. +- **inventree:** specific tagged images are built for each tagged release of InvenTree + +### Docker Compose + +InvenTree provides sample docker-compose files to get you up and running. + +- A *production* compose file is intended to be used in a production environment, running the web server behind a nginx proxy. +- A *development* compose file provides a simple way to spin up a development environment + !!! warning "Docker Compose Version" Tthe following guide is designed to work with docker-compose v1.x. There are currently known issues with [docker-compose v2 support](https://github.com/docker/compose/releases/tag/v2.0.0). If you are having issues with the docker installation guide, check the version of docker-compose you are running with the command `docker-compose --version`.