home / github

Menu
  • GraphQL API

issue_comments

Table actions
  • GraphQL API for issue_comments

4 rows where issue = 884952179

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: reactions, created_at (date), updated_at (date)

id ▼ html_url issue_url node_id user created_at updated_at author_association body reactions issue performed_via_github_app
847223853 https://github.com/simonw/datasette/issues/1320#issuecomment-847223853 https://api.github.com/repos/simonw/datasette/issues/1320 MDEyOklzc3VlQ29tbWVudDg0NzIyMzg1Mw== simonw 9599 2021-05-24T17:51:12Z 2021-05-24T17:51:12Z OWNER This is a good catch, thank you. {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} Can't use apt-get in Dockerfile when using datasetteproj/datasette as base 884952179  
847230866 https://github.com/simonw/datasette/issues/1320#issuecomment-847230866 https://api.github.com/repos/simonw/datasette/issues/1320 MDEyOklzc3VlQ29tbWVudDg0NzIzMDg2Ng== simonw 9599 2021-05-24T18:03:29Z 2021-05-24T18:03:29Z OWNER ``` root@33c269900821:/# du -h /var/lib/dpkg 6.3M /var/lib/dpkg/info 24K /var/lib/dpkg/triggers 4.0K /var/lib/dpkg/updates 20K /var/lib/dpkg/alternatives 4.0K /var/lib/dpkg/parts 6.7M /var/lib/dpkg ``` So `/var/lib/dpkg/info` is most of the space, I'll try just deleting that. {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} Can't use apt-get in Dockerfile when using datasetteproj/datasette as base 884952179  
847232547 https://github.com/simonw/datasette/issues/1320#issuecomment-847232547 https://api.github.com/repos/simonw/datasette/issues/1320 MDEyOklzc3VlQ29tbWVudDg0NzIzMjU0Nw== simonw 9599 2021-05-24T18:06:32Z 2021-05-24T18:06:32Z OWNER I'm testing tweaks to the Dockerfile by editing it and running: ``` docker build . -t datasette-057a0 --build-arg VERSION=0.57a0 ``` Then running this to inspect the new image: ``` docker run -it -p 8001:8001 datasette-057a0 bash ``` After changing that line to `rm -rf /var/lib/dpkg/info/*` I can run `apt-get` successfully from inside that bash prompt: ``` # apt-get update # apt-get install ripgrep # rg --version ripgrep 12.1.1 ``` {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} Can't use apt-get in Dockerfile when using datasetteproj/datasette as base 884952179  
847237524 https://github.com/simonw/datasette/issues/1320#issuecomment-847237524 https://api.github.com/repos/simonw/datasette/issues/1320 MDEyOklzc3VlQ29tbWVudDg0NzIzNzUyNA== simonw 9599 2021-05-24T18:15:56Z 2021-05-24T18:15:56Z OWNER Added some new documentation about that here: https://github.com/simonw/datasette/blob/c0a748e5c3f498fa8c139b420d07dd3dea612379/docs/installation.rst#installing-plugins {"total_count": 1, "+1": 0, "-1": 0, "laugh": 0, "hooray": 1, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} Can't use apt-get in Dockerfile when using datasetteproj/datasette as base 884952179  

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [issue_comments] (
   [html_url] TEXT,
   [issue_url] TEXT,
   [id] INTEGER PRIMARY KEY,
   [node_id] TEXT,
   [user] INTEGER REFERENCES [users]([id]),
   [created_at] TEXT,
   [updated_at] TEXT,
   [author_association] TEXT,
   [body] TEXT,
   [reactions] TEXT,
   [issue] INTEGER REFERENCES [issues]([id])
, [performed_via_github_app] TEXT);
CREATE INDEX [idx_issue_comments_issue]
                ON [issue_comments] ([issue]);
CREATE INDEX [idx_issue_comments_user]
                ON [issue_comments] ([user]);
Powered by Datasette · Queries took 16.848ms · About: simonw/datasette-graphql