{"id":13588121,"url":"https://github.com/jgoerzen/docker-weewx","last_synced_at":"2025-04-13T04:04:05.844Z","repository":{"id":55450515,"uuid":"96061327","full_name":"jgoerzen/docker-weewx","owner":"jgoerzen","description":"[read-only mirror] WeeWX weather station in Docker","archived":false,"fork":false,"pushed_at":"2024-04-04T15:45:51.000Z","size":25,"stargazers_count":16,"open_issues_count":1,"forks_count":14,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-13T04:03:36.035Z","etag":null,"topics":["docker","docker-image","weather"],"latest_commit_sha":null,"homepage":"https://salsa.debian.org/jgoerzen/docker-weewx","language":"Shell","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jgoerzen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2017-07-03T02:04:57.000Z","updated_at":"2025-04-09T10:12:02.000Z","dependencies_parsed_at":"2024-11-06T07:33:26.690Z","dependency_job_id":"3025fede-9003-41f4-8ed1-ff16b31c30bb","html_url":"https://github.com/jgoerzen/docker-weewx","commit_stats":{"total_commits":28,"total_committers":3,"mean_commits":9.333333333333334,"dds":0.2857142857142857,"last_synced_commit":"5956a49e9ca17fac85c8d5d68c174079d8275043"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgoerzen%2Fdocker-weewx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgoerzen%2Fdocker-weewx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgoerzen%2Fdocker-weewx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jgoerzen%2Fdocker-weewx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jgoerzen","download_url":"https://codeload.github.com/jgoerzen/docker-weewx/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248661708,"owners_count":21141450,"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","docker-image","weather"],"created_at":"2024-08-01T15:06:31.299Z","updated_at":"2025-04-13T04:04:05.816Z","avatar_url":"https://github.com/jgoerzen.png","language":"Shell","funding_links":[],"categories":["Shell"],"sub_categories":[],"readme":"# weewx for Docker\n\n**NOTE: This repo is no longer hosted on Github.  See its\n[new home on salsa](https://salsa.debian.org/jgoerzen/docker-weewx).**\n\nThis Docker image provides support for [WeeWX](http://www.weewx.com/).\nWeewx is a simple, easy to use weather station.  It provides\na seamless upgrade from wview as well, so this is an easily-used\nreplacement for it.\n\nWeeWX will require customization, so please consult the\ninstructions before beginning.\n\nSome uses (such as with specialized hardware) may require\nDocker to run in privileged mode; such cases are beyond the scope\nof this manual.  However, serial devices can easily be used\non the host and presented to the Docker container via ser2net.\nAn increasing number of weather stations are network-enabled and\ncan communicate directly to this system.\n\nYou can view the [documentation for this image](https://salsa.debian.org/jgoerzen/docker-weewx)\non its Github page.  This image is based on my [debian-base-security](https://salsa.debian.org/jgoerzen/docker-debian-base)\nimage, which features automatic security updates to the operating system (though not WeeWX)\nenabled by default.\n\nWeeWX is most typically used with a local sqlite database.  If you intend to\nuse it with something else, you will probably need to install additional\nsoftware in the container.\n\nI have provided rsync and ssh, however, since they are commonly used to push\npages to remote servers.\n\nYou can download with:\n\n    docker pull jgoerzen/weewx\n\nAnd run with something like this:\n\n    docker run -td \\\n    --stop-signal=SIGRTMIN+3 \\\n    --tmpfs /run:size=100M --tmpfs /run/lock:size=100M \\\n    -v /sys/fs/cgroup:/sys/fs/cgroup:rw --cgroupns=host \\\n    --hostname=weewx \\\n    -v /weatherdir:/var/lib/weewx:rw \\\n    --name=weewx jgoerzen/weewx\n\nOr, on al older system (pre-bullseye):\n\n    docker run -td \\\n    --stop-signal=SIGRTMIN+3 \\\n    --tmpfs /run:size=100M --tmpfs /run/lock:size=100M \\\n    -v /sys/fs/cgroup:/sys/fs/cgroup:ro \\\n    --hostname=weewx \\\n    -v /weatherdir:/var/lib/weewx:rw \\\n    --name=weewx jgoerzen/weewx\n\nYou almost certainly want to mount something over `/var/lib/weewx` so your\nimportant data is preserved.  You will also want to have a way to preserve\nthe configuration in `/etc/weewx`.  By default, the `HTML_ROOT` value in\n`/etc/weewx/weewx.conf` lists `/var/www/html/weewx`, so this would be an\nexcellent volume to export to a webserver container (such as my\n[jgoerzen/debian-base-apache](https://salsa.debian.org/jgoerzen/docker-debian-base)).\n\nConsult the [WeeWX documentation](http://www.weewx.com/docs.html) for setup steps.\n\n# Logging\n\nLogging can be done either to Docker or in the container; see `DEBBASE_SYSLOG` as\ndocumented in the [docker-debian-base docs](https://salsa.debian.org/jgoerzen/docker-debian-base).\n\n# Source\n\nThis is prepared by John Goerzen \u003cjgoerzen@complete.org\u003e and the source\ncan be found at https:///jgoerzen/docker-weewx\n\n# Security Status\n\nThe Debian operating system is configured to automatically apply security patches.\nWeeWX, however, does not have such a feature.\n\n# Copyright\n\nDocker scripts, etc. are Copyright (c) 2017-2024 John Goerzen.  \nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the above copyright\n   notice, this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\n   notice, this list of conditions and the following disclaimer in the\n   documentation and/or other materials provided with the distribution.\n3. Neither the name of the University nor the names of its contributors\n   may be used to endorse or promote products derived from this software\n   without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\nOR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\nHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\nLIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\nOUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\n\nAdditional software copyrights as noted.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjgoerzen%2Fdocker-weewx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjgoerzen%2Fdocker-weewx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjgoerzen%2Fdocker-weewx/lists"}