diff --git a/Dockerfile b/Dockerfile index 1b96e4d2d48188fed8ad3974b250ce135ad8e9e7..28ef2b3f4a6d515147454d19e5f97965e2965ad2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,6 +29,6 @@ HEALTHCHECK NONE ENTRYPOINT ["sqlite3"] -CMD ["test1"] + diff --git a/README.md b/README.md index 48f59df1937c59d150ac79749b9360e8dc1494cb..188df17a7af7c71bc2a0020cab17afd25771cf76 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,16 @@ -# sqlite +# 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 diff --git a/renovate.json b/renovate.json deleted file mode 100644 index ad91ebcd74e69286ed57b4d46f7ae4726b8fc4c7..0000000000000000000000000000000000000000 --- 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