{"id":23366581,"url":"https://github.com/dmptrluke/docker-pokesag","last_synced_at":"2025-10-29T01:31:34.337Z","repository":{"id":37982873,"uuid":"338700754","full_name":"dmptrluke/docker-pokesag","owner":"dmptrluke","description":"A web interface for viewing SDR-captured POCSAG pages. But in Docker!","archived":false,"fork":false,"pushed_at":"2023-12-18T05:55:52.000Z","size":1784,"stargazers_count":2,"open_issues_count":7,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-12-21T14:16:25.441Z","etag":null,"topics":["docker"],"latest_commit_sha":null,"homepage":"","language":"CSS","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/dmptrluke.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-02-14T00:41:00.000Z","updated_at":"2024-10-02T19:59:12.000Z","dependencies_parsed_at":"2023-02-12T20:45:37.880Z","dependency_job_id":null,"html_url":"https://github.com/dmptrluke/docker-pokesag","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmptrluke%2Fdocker-pokesag","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmptrluke%2Fdocker-pokesag/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmptrluke%2Fdocker-pokesag/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmptrluke%2Fdocker-pokesag/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dmptrluke","download_url":"https://codeload.github.com/dmptrluke/docker-pokesag/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238754963,"owners_count":19525038,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["docker"],"created_at":"2024-12-21T14:16:36.561Z","updated_at":"2025-10-29T01:31:34.032Z","avatar_url":"https://github.com/dmptrluke.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"__Warning: Depending on your region, it may not be legal to share or act upon any messages received by a radio scanner. \nYou are advised to check your local regulations, and to NOT expose PokéSAG to the internet.__\n\n![PokéSAG Logo](web/client/public/images/icon_x128.png)\n\n# PokéSAG (Docker Edition)\n\nA dockerized version of [PokéSAG](https://github.com/JoppyFurr/PokeSAG/) by @JoppyFurr!\n\nTo run a full stack of `pokesag-docker` (including a database), you can use the following `docker-compose` file.\n\n```yaml\n---\nversion: \"3.8\"\n\nservices:\n  db:\n    image: postgres:15\n    container_name: pokesag_db\n    environment:\n      POSTGRES_USER: pokesag\n      POSTGRES_PASSWORD: pokesag\n      TZ: Pacific/Auckland\n    volumes:\n      - pokesag_db:/var/lib/postgresql/data\n    restart: always\n\n  receiver:\n    image: ghcr.io/dmptrluke/pokesag-receiver:latest\n    container_name: pokesag_receiver\n    environment:\n      TZ: Pacific/Auckland\n    devices:\n      - /dev/swradio0:/dev/swradio0\n      - /dev/bus/usb:/dev/bus/usb\n    privileged: true\n    restart: always\n\n  web:\n    image: ghcr.io/dmptrluke/pokesag-web:latest\n    container_name: pokesag_web\n    environment:\n      TZ: Pacific/Auckland\n    ports:\n      - \"8000:8000\"\n    restart: always\n\nvolumes:\n  pokesag_db:\n```\n\nYou can also choose to use an external database by omitting the `db` container and using the `DB_HOST`/`DB_NAME`/`DB_USER`/`DB_PASS` environment variables on the `web` and `receiver` containers.\n\n## Step by Step\nIf you're new to Docker, below is a step by step guide to running PokéSAG in Docker. \n\nFirst of all, you'll need to install Docker. Head to the [official documentation](https://docs.docker.com/engine/install/) and select your Linux distro under the \"Server\" section and follow the instructions on the page.\n\nAfter that, create a new folder to work in to keep things tidy. In that folder create a file called `docker-compose.yml` with the text in the previous section, and save it. If you just want a basic install of PokéSAG, you won't need to edit anything.\n\nFinally, run `docker compose up` to start PokéSAG! This will run in the foreground. When you're happy with how everything is working, you can use `docker compose up -d` to run everything in the background.\n\nTo update to the latest version, just run `docker compose pull` and then `docker compose up -d` again.\n\n## License\n\nThis software is released under the MIT license.\n\n```\nCopyright (c) 2018 Joppy Furr\nCopyright (c) 2020-2023 Luke Rogers\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdmptrluke%2Fdocker-pokesag","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdmptrluke%2Fdocker-pokesag","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdmptrluke%2Fdocker-pokesag/lists"}