From 5e9609c2cecf58a88806220b77abf32698b3aaed Mon Sep 17 00:00:00 2001 From: Morten Brekkevold Date: Fri, 24 Mar 2023 14:33:50 +0100 Subject: [PATCH] Add disclaimer against production use of dev stuff The docker and docker compose definitions in this repository are actually aimed at building NAV development environments, not production deployments. This adds a disclaimer against attempting to use these in production, and instead points to the separate project we've made for more production-oriented containerization. --- Dockerfile | 4 +++- docker-compose.yml | 7 ++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index d73166a128..dfb3206067 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,6 @@ -# NAV development container +# NAV development container. This is NOT SUITABLE for production use of NAV. +# For more production-oriented containerization, have a look at the separate +# project https://github.com/Uninett/nav-container # # This container aims at providing all the build- and runtime dependencies of # NAV itself in a single container, and allowing for running them all directly diff --git a/docker-compose.yml b/docker-compose.yml index 10e5def7c1..f66706dfa1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,7 @@ -# This sets up a live NAV development environment in Docker containers. -# -# Defaults NAV to a container with Python 3. +# This sets up a live NAV development environment in Docker containers. This +# is NOT SUITABLE for production use of NAV. For more production-oriented +# containerization, have a look at the separate project +# https://github.com/Uninett/nav-container # version: '3'