Sign inSign up

zcw2023/weewx

By zcw2023

•Updated over 1 year ago

this is my build of the weewx weather station

Image
Internet of things
0

520

zcw2023/weewx repository overview

⁠Weewx Docker Images

*** BETA BUILDS use at own Risk ***

**For any issues, please report at https://github.com/zcworld/docker-weewx/issues⁠**

⁠Base Image

  • Will not auto start and its runs in demo mode only.

⁠Addon Images

  • Interceptor Driver: Enables communication with a weather station.
  • Interceptor Driver + Apache Web Server: Provides the full Weewx setup with a web interface.

Allows you to upload data from your own weather station for use.

Still working on fixing any problems with it.

⁠Configuration

The weewx.conf and weather history database are located in the config folder.

⁠Usage

⁠Base Image
docker run -d \
--name=test \
-e PUID=1000 \
-e PGID=1000 \
-v /path/to/config/folder:/config \
--restart unless-stopped \
zcw2023/weewx:20.04_base
⁠Addon Image

Interceptor Port: 8000

Set this address in weather station configuration page as an customized ecowitt server address

Weather station reports to: hostIP:8000/data/report/

docker run -d \
--name=test \
-e PUID=1000 \
-e PGID=1000 \
-p 8000:8000 \
-v /path/to/config/folder:/config \
--restart unless-stopped \
zcw2023/weewx:20.04_addons
⁠Addon Image + WS

Interceptor Port: 8000

Set this address in weather station configuration page as an customized ecowitt server address

Weather station reports to: hostIP:8000/data/report/

Weather station http site : hostIP:80/weewx

docker run -d \
--name=test \
-e PUID=1000 \
-e PGID=1000 \
-p 80:80 \
-p 8000:8000 \
-v /path/to/config/folder:/config \
--restart unless-stopped \
zcw2023/weewx:20.04_addons_ws

Tag summary

Content type

Image

Digest

sha256:dd3cc69c5…

Size

120 MB

Last updated

over 1 year ago

docker pull zcw2023/weewx:20.04_addon_ws