{"id":25983938,"url":"https://github.com/gabsedits/dock-links","last_synced_at":"2026-03-07T17:34:02.152Z","repository":{"id":280656215,"uuid":"942266753","full_name":"GabsEdits/dock-links","owner":"GabsEdits","description":"Create a quick links page, fully containarized!","archived":false,"fork":false,"pushed_at":"2025-06-12T19:47:05.000Z","size":39,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-12T21:02:08.757Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GabsEdits.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-03-03T20:54:47.000Z","updated_at":"2025-06-12T19:47:08.000Z","dependencies_parsed_at":"2025-06-12T20:49:36.048Z","dependency_job_id":"56295bb4-3c41-427a-9b6f-2b604cf8b167","html_url":"https://github.com/GabsEdits/dock-links","commit_stats":null,"previous_names":["gabsedits/dock-links"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/GabsEdits/dock-links","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GabsEdits%2Fdock-links","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GabsEdits%2Fdock-links/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GabsEdits%2Fdock-links/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GabsEdits%2Fdock-links/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GabsEdits","download_url":"https://codeload.github.com/GabsEdits/dock-links/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GabsEdits%2Fdock-links/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30223448,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T17:00:40.062Z","status":"ssl_error","status_checked_at":"2026-03-07T17:00:39.026Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-05T10:36:24.007Z","updated_at":"2026-03-07T17:34:02.111Z","avatar_url":"https://github.com/GabsEdits.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\u003ch1\u003eDock Links\u003c/h1\u003e\n\u003cp\u003eQuick access to your links, securely and scalable.\u003c/p\u003e\n\u003csmall\u003e\n\nBased on [Quick Links](https://github.com/GabsEdits/quick-links), but Docker-only.\n\n\u003c/small\u003e\n\u003c/div\u003e\n\n## Intention\n\nIt was created to provide an even simpler way to use Quick Links, but requiring only a Dockerfile\nand Environment Variables.\n\nIt was tested with [Coolify](https://coolify.io).\n\n## Usage (Coolify)\n\nI've made a video showing each and every detail of the application setup and usage.\n\nhttps://github.com/user-attachments/assets/a0f39466-cd10-4e29-9546-6142c46407ff\n\n### Creating the new application\n\n1. Create a new application in Coolify.\n2. Choose \"Dockerfile\" as the source.\n3. Add the following Dockerfile to your application:\n\n```dockerfile\nFROM denoland/deno:latest AS build\n\nUSER root\nRUN apt-get update \u0026\u0026 apt-get install -y git\n\nRUN git clone --depth 1 https://github.com/GabsEdits/dock-links.git /app\n\nWORKDIR /app\n\nRUN deno task build\n\nEXPOSE 4173\n\nENTRYPOINT [\"deno\", \"task\", \"preview\"]\n```\n\n### Environment Variables\n\nNow that you have set up your application, you can add the following environment variables:\n\n```\nVITE_PASSWORD_KEY=YOUR_PASSWORD_KEY\nVITE_TITLE=\"YOUR_TITLE\"\nVITE_CARDX_SUBJECT=\"YOUR_SUBJECT\"\nVITE_CARDX_DETAILS=\"YOUR_DETAILS\"\nVITE_CARDX_DATE=\"YOUR_DATE\"\nVITE_CARDX_COLOR=\"YOUR_COLOR\"\nVITE_LINK_COUNT=THE_AMOUNT_OF_LINKS\nVITE_AUTHOR_NAME=YOUR_NAME\nVITE_AUTHOR_LINK=YOUR_WEBSITE\nVITE_LINKX=YOUR_LINK\n```\n\nThe `VITE_CARDX` and `VITE_LINKX` environment variables are used for each card.\nYou need to replace them with the number of cards you want to create. For example,\nif you want to create 3 cards, you would add the following environment variables:\n\n```\nVITE_CARD1_SUBJECT=\"Card 1 Subject\"\nVITE_CARD1_DETAILS=\"Card 1 Details\"\nVITE_CARD1_DATE=\"Card 1 Date\"\nVITE_CARD1_COLOR=\"Card 1 Color\"\nVITE_CARD2_SUBJECT=\"Card 2 Subject\"\nVITE_CARD2_DETAILS=\"Card 2 Details\"\nVITE_CARD2_DATE=\"Card 2 Date\"\nVITE_CARD2_COLOR=\"Card 2 Color\"\nVITE_CARD3_SUBJECT=\"Card 3 Subject\"\nVITE_CARD3_DETAILS=\"Card 3 Details\"\nVITE_CARD3_DATE=\"Card 3 Date\"\nVITE_CARD3_COLOR=\"Card 3 Color\"\nVITE_LINK1=\"https://example.com/1\"\nVITE_LINK2=\"https://example.com/2\"\nVITE_LINK3=\"https://example.com/3\"\nVITE_LINK_COUNT=3\n```\n\nAnd you will also rewrite the amount of links you have in `VITE_LINK_COUNT`. For the example\nabove, we have 3 total links, which means `VITE_LINK_COUNT=3`.\n\nYou will also need to replace each variable with the appropriate value. For example, if your\nname is John, you will replace `VITE_AUTHOR_NAME=YOUR_NAME` with `VITE_AUTHOR_NAME=John`.\n\n## Demo Configuration\n\nIf you would like a Demo configuration (for the environment variables), you can use the following:\n\n```\nVITE_PASSWORD_KEY=my-lovely-password\nVITE_TITLE=\"My Awesome Links\"\nVITE_AUTHOR_NAME=\"John\"\nVITE_AUTHOR_LINK=\"mailto:john@example.com\"\nVITE_CARD1_SUBJECT=\"Card 1 Subject\"\nVITE_CARD1_DETAILS=\"Card 1 Details\"\nVITE_CARD1_DATE=\"Card 1 Date\"\nVITE_CARD1_COLOR=\"Card 1 Color\"\nVITE_CARD2_SUBJECT=\"Card 2 Subject\"\nVITE_CARD2_DETAILS=\"Card 2 Details\"\nVITE_CARD2_DATE=\"Card 2 Date\"\nVITE_CARD2_COLOR=\"Card 2 Color\"\nVITE_CARD3_SUBJECT=\"Card 3 Subject\"\nVITE_CARD3_DETAILS=\"Card 3 Details\"\nVITE_CARD3_DATE=\"Card 3 Date\"\nVITE_CARD3_COLOR=\"Card 3 Color\"\nVITE_LINK1=\"https://example.com/1\"\nVITE_LINK2=\"https://example.com/2\"\nVITE_LINK3=\"https://example.com/3\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabsedits%2Fdock-links","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgabsedits%2Fdock-links","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgabsedits%2Fdock-links/lists"}