{"html_url": "https://github.com/simonw/datasette/pull/280#issuecomment-391059008", "issue_url": "https://api.github.com/repos/simonw/datasette/issues/280", "id": 391059008, "node_id": "MDEyOklzc3VlQ29tbWVudDM5MTA1OTAwOA==", "user": {"value": 565628, "label": "r4vi"}, "created_at": "2018-05-22T16:40:27Z", "updated_at": "2018-05-22T16:40:27Z", "author_association": "CONTRIBUTOR", "body": "```python\r\n>>> import sqlite3\r\n>>> sqlite3.sqlite_version\r\n'3.23.1'\r\n>>> \r\n```\r\nrunning the above in the container seems to show 3.23.1 too so maybe we don't need pysqlite3 at all?", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 325373747, "label": "Build Dockerfile with recent Sqlite + Spatialite"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/datasette/pull/280#issuecomment-391076239", "issue_url": "https://api.github.com/repos/simonw/datasette/issues/280", "id": 391076239, "node_id": "MDEyOklzc3VlQ29tbWVudDM5MTA3NjIzOQ==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2018-05-22T17:33:33Z", "updated_at": "2018-05-22T17:33:33Z", "author_association": "OWNER", "body": "This looks amazing! Can't wait to try this out this evening.", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 325373747, "label": "Build Dockerfile with recent Sqlite + Spatialite"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/datasette/pull/280#issuecomment-391076458", "issue_url": "https://api.github.com/repos/simonw/datasette/issues/280", "id": 391076458, "node_id": "MDEyOklzc3VlQ29tbWVudDM5MTA3NjQ1OA==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2018-05-22T17:34:13Z", "updated_at": "2018-05-22T17:34:13Z", "author_association": "OWNER", "body": "Yeah let's try this without pysqlite3 and see if we still get the correct version.", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 325373747, "label": "Build Dockerfile with recent Sqlite + Spatialite"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/datasette/pull/280#issuecomment-391141391", "issue_url": "https://api.github.com/repos/simonw/datasette/issues/280", "id": 391141391, "node_id": "MDEyOklzc3VlQ29tbWVudDM5MTE0MTM5MQ==", "user": {"value": 565628, "label": "r4vi"}, "created_at": "2018-05-22T21:08:39Z", "updated_at": "2018-05-22T21:08:39Z", "author_association": "CONTRIBUTOR", "body": "I'm going to clean this up for consistency tomorrow morning so hold off\nmerging until then please\n\nOn Tue, May 22, 2018 at 6:34 PM, Simon Willison \nwrote:\n\n> Yeah let's try this without pysqlite3 and see if we still get the correct\n> version.\n>\n> \u2014\n> You are receiving this because you authored the thread.\n> Reply to this email directly, view it on GitHub\n> , or mute\n> the thread\n> \n> .\n>\n", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 325373747, "label": "Build Dockerfile with recent Sqlite + Spatialite"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/datasette/pull/280#issuecomment-391190497", "issue_url": "https://api.github.com/repos/simonw/datasette/issues/280", "id": 391190497, "node_id": "MDEyOklzc3VlQ29tbWVudDM5MTE5MDQ5Nw==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2018-05-23T01:22:53Z", "updated_at": "2018-05-23T01:22:53Z", "author_association": "OWNER", "body": "I grabbed just your Dockerfile and built it like this:\r\n\r\n docker build . -t datasette\r\n\r\nOnce it had built, I ran it like this:\r\n\r\n docker run -p 8001:8001 -v `pwd`:/mnt datasette \\\r\n datasette -p 8001 -h 0.0.0.0 /mnt/fixtures.db \\\r\n --load-extension=/usr/local/lib/mod_spatialite.so\r\n\r\n(The fixtures.db file is created by running `python tests/fixtures.py fixtures.db`)\r\n\r\nThen I visited http://localhost:8001/-/versions and I got this:\r\n\r\n {\r\n \"datasette\": {\r\n \"version\": \"0+unknown\"\r\n },\r\n \"python\": {\r\n \"full\": \"3.6.3 (default, Dec 12 2017, 06:37:05) \\n[GCC 6.3.0 20170516]\",\r\n \"version\": \"3.6.3\"\r\n },\r\n \"sqlite\": {\r\n \"extensions\": {\r\n \"json1\": null,\r\n \"spatialite\": \"4.4.0-RC0\"\r\n },\r\n \"fts_versions\": [\r\n \"FTS4\",\r\n \"FTS3\"\r\n ],\r\n \"version\": \"3.23.1\"\r\n }\r\n }\r\n\r\nFantastic! I'm getting SQLite `3.23.1` and SpatiaLite `4.4.0-RC0`", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 325373747, "label": "Build Dockerfile with recent Sqlite + Spatialite"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/datasette/pull/280#issuecomment-391290271", "issue_url": "https://api.github.com/repos/simonw/datasette/issues/280", "id": 391290271, "node_id": "MDEyOklzc3VlQ29tbWVudDM5MTI5MDI3MQ==", "user": {"value": 565628, "label": "r4vi"}, "created_at": "2018-05-23T09:53:38Z", "updated_at": "2018-05-23T09:53:38Z", "author_association": "CONTRIBUTOR", "body": "Running:\r\n```bash\r\ndocker run -p 8001:8001 -v `pwd`:/mnt datasette \\\r\n datasette -p 8001 -h 0.0.0.0 /mnt/fixtures.db \\\r\n --load-extension=/usr/local/lib/mod_spatialite.so\r\n```\r\n\r\nis now returning FTS5 enabled in the versions output:\r\n\r\n```json\r\n{\r\n \"datasette\": {\r\n \"version\": \"0.22\"\r\n },\r\n \"python\": {\r\n \"full\": \"3.6.5 (default, May 5 2018, 03:07:21) \\n[GCC 6.3.0 20170516]\",\r\n \"version\": \"3.6.5\"\r\n },\r\n \"sqlite\": {\r\n \"extensions\": {\r\n \"json1\": null,\r\n \"spatialite\": \"4.4.0-RC0\"\r\n },\r\n \"fts_versions\": [\r\n \"FTS5\",\r\n \"FTS4\",\r\n \"FTS3\"\r\n ],\r\n \"version\": \"3.23.1\"\r\n }\r\n}\r\n```\r\nThe old query didn't work because specifying `(t TEXT)` caused an error", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 325373747, "label": "Build Dockerfile with recent Sqlite + Spatialite"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/datasette/pull/280#issuecomment-391354237", "issue_url": "https://api.github.com/repos/simonw/datasette/issues/280", "id": 391354237, "node_id": "MDEyOklzc3VlQ29tbWVudDM5MTM1NDIzNw==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2018-05-23T13:51:22Z", "updated_at": "2018-05-23T13:51:22Z", "author_association": "OWNER", "body": "@r4vi any objections to me merging this?", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 325373747, "label": "Build Dockerfile with recent Sqlite + Spatialite"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/datasette/pull/280#issuecomment-391355030", "issue_url": "https://api.github.com/repos/simonw/datasette/issues/280", "id": 391355030, "node_id": "MDEyOklzc3VlQ29tbWVudDM5MTM1NTAzMA==", "user": {"value": 565628, "label": "r4vi"}, "created_at": "2018-05-23T13:53:27Z", "updated_at": "2018-05-23T15:22:45Z", "author_association": "CONTRIBUTOR", "body": "No objections;\r\nIt's good to go @simonw\r\n\r\nOn Wed, 23 May 2018, 14:51 Simon Willison, wrote:\r\n\r\n> @r4vi any objections to me merging this?\r\n>\r\n> \u2014\r\n> You are receiving this because you were mentioned.\r\n> Reply to this email directly, view it on GitHub\r\n> , or mute\r\n> the thread\r\n> \r\n> .\r\n>\r\n", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 325373747, "label": "Build Dockerfile with recent Sqlite + Spatialite"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/datasette/pull/280#issuecomment-391437199", "issue_url": "https://api.github.com/repos/simonw/datasette/issues/280", "id": 391437199, "node_id": "MDEyOklzc3VlQ29tbWVudDM5MTQzNzE5OQ==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2018-05-23T17:44:20Z", "updated_at": "2018-05-23T17:44:20Z", "author_association": "OWNER", "body": "Thank you very much! This is most excellent.", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 325373747, "label": "Build Dockerfile with recent Sqlite + Spatialite"}, "performed_via_github_app": null} {"html_url": "https://github.com/simonw/datasette/pull/280#issuecomment-401003061", "issue_url": "https://api.github.com/repos/simonw/datasette/issues/280", "id": 401003061, "node_id": "MDEyOklzc3VlQ29tbWVudDQwMTAwMzA2MQ==", "user": {"value": 9599, "label": "simonw"}, "created_at": "2018-06-28T11:26:23Z", "updated_at": "2018-06-28T11:26:23Z", "author_association": "OWNER", "body": "I pushed this to Docker Hub https://hub.docker.com/r/datasetteproject/datasette/ and added notes on how to use it to the documentation: http://datasette.readthedocs.io/en/latest/installation.html#using-docker", "reactions": "{\"total_count\": 0, \"+1\": 0, \"-1\": 0, \"laugh\": 0, \"hooray\": 0, \"confused\": 0, \"heart\": 0, \"rocket\": 0, \"eyes\": 0}", "issue": {"value": 325373747, "label": "Build Dockerfile with recent Sqlite + Spatialite"}, "performed_via_github_app": null}