From 2658b187974efc42ca22b3ab7e3399d466d61510 Mon Sep 17 00:00:00 2001 From: Steven Polley Date: Sat, 20 Jun 2020 20:30:09 -0600 Subject: [PATCH] Improve readme --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 77af8f7..20acee4 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ A simple view counter for a website ### Database initialization +The following SQL will initialize the database for this application. No automigrate / initialization is done upon first running the application, so this must be ran by an administrator. + ```sql SET NAMES utf8; SET time_zone = '+00:00'; @@ -24,8 +26,14 @@ CREATE TABLE `visit` ( ``` +### Build Container + +Disclaimer! If you use this, you'll need to build the container yourself. My registry is used for my internal infrastructure only and is not publicly available. + ### Example docker-compose.yml +Create a docker-compose file + ```yaml version: '3.7'