From 306ab00ae986afa4007884663f5f9e391f3658bc Mon Sep 17 00:00:00 2001 From: ypatel Date: Thu, 16 Jul 2020 09:33:26 -0400 Subject: [PATCH 1/4] updated Reame.md --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 48f59df..046dcdf 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,16 @@ # sqlite +Version: 3.26.0 + +## Overview + * SQLite is a C library that implements an SQL database engine. A large subset of SQL92 is supported. A complete database is stored in a single disk file. The API is designed for convenience and ease of use. Applications that link against SQLite can enjoy the power and flexiblity of an SQL database without the administrative hassles of supporting a separate database server. Because it omits the client-server interaction overhead and writes directly to disk, SQLite is also faster than the big database servers for most operations. In addition to the C library, the SQLite distribution includes a command-line tool for interacting with SQLite databases and SQLite bindings for Tcl/Tk. +## Usage + +This sqlite container is inteed to be used as base image for application requiring sqlite. +SQLite official webpage: https://www.sqlite.org/index.html + +##Notes + +The default user for container is dbuser \ No newline at end of file -- GitLab From b35800a1cb213297ad5c733bcadae9d5bb625e5d Mon Sep 17 00:00:00 2001 From: ypatel Date: Thu, 16 Jul 2020 09:49:13 -0400 Subject: [PATCH 2/4] Updated Docker, README. Removed Renovate.json --- Dockerfile | 2 +- README.md | 4 ++-- renovate.json | 22 ---------------------- 3 files changed, 3 insertions(+), 25 deletions(-) delete mode 100644 renovate.json diff --git a/Dockerfile b/Dockerfile index 1b96e4d..28ef2b3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,6 +29,6 @@ HEALTHCHECK NONE ENTRYPOINT ["sqlite3"] -CMD ["test1"] + diff --git a/README.md b/README.md index 046dcdf..188df17 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# sqlite +# SQLite Version: 3.26.0 @@ -11,6 +11,6 @@ Version: 3.26.0 This sqlite container is inteed to be used as base image for application requiring sqlite. SQLite official webpage: https://www.sqlite.org/index.html -##Notes +## Notes The default user for container is dbuser \ No newline at end of file diff --git a/renovate.json b/renovate.json deleted file mode 100644 index ad91ebc..0000000 --- a/renovate.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "assignees": ["@yamini.patel"], - "baseBranches": ["development"], - "regexManagers": [ - { - "fileMatch": ["^Dockerfile$"], - "matchStrings": [ - "version=\"(?.*?)\"" - ], - "depNameTemplate": "sqlite", - "datasourceTemplate": "docker" - }, - { - "fileMatch": ["^Jenkinsfile$"], - "matchStrings": [ - "version:\\s+\"(?.*?)\"" - ], - "depNameTemplate": "sqlite", - "datasourceTemplate": "docker" - } - ] - } \ No newline at end of file -- GitLab From 988e3e66d91610735611c46c5a2b86cbe45f556e Mon Sep 17 00:00:00 2001 From: ypatel Date: Thu, 16 Jul 2020 10:09:06 -0400 Subject: [PATCH 3/4] added renovate.json back since build faiiled without it --- renovate.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..8f088a7 --- /dev/null +++ b/renovate.json @@ -0,0 +1,22 @@ +{ + "assignees": ["@yamini.patel"], + "baseBranches": ["development"], + "regexManagers": [ + { + "fileMatch": ["^Dockerfile$"], + "matchStrings": [ + "version=\"(?.*?)\"" + ], + "depNameTemplate": "sqlite", + "datasourceTemplate": "docker" + }, + { + "fileMatch": ["^Jenkinsfile$"], + "matchStrings": [ + "version:\\s+\"(?.*?)\"" + ], + "depNameTemplate": "sqlite", + "datasourceTemplate": "docker" + } + ] + } -- GitLab From 8397a509a7f72b6e0d8959c4d31ec633d897d366 Mon Sep 17 00:00:00 2001 From: ypatel Date: Thu, 16 Jul 2020 10:54:28 -0400 Subject: [PATCH 4/4] removed renovate.json --- renovate.json | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 renovate.json diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 8f088a7..0000000 --- a/renovate.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "assignees": ["@yamini.patel"], - "baseBranches": ["development"], - "regexManagers": [ - { - "fileMatch": ["^Dockerfile$"], - "matchStrings": [ - "version=\"(?.*?)\"" - ], - "depNameTemplate": "sqlite", - "datasourceTemplate": "docker" - }, - { - "fileMatch": ["^Jenkinsfile$"], - "matchStrings": [ - "version:\\s+\"(?.*?)\"" - ], - "depNameTemplate": "sqlite", - "datasourceTemplate": "docker" - } - ] - } -- GitLab