forked from optoisolated/MXWeather
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
23 lines (23 loc) · 1.18 KB
/
docker-compose.yml
File metadata and controls
23 lines (23 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
MXWeather:
container_name: MXWeather
image: nossieuk/mxweather
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
# Adjust timezone to your own
- TZ=Europe/London
volumes:
- /etc/localtime:/etc/localtime:ro
# If you wish to keep your data seperate, you can change for example ./volumes/MXWeather/data to /media/pi/USBdrive etc this means even if you wipe the container and reinstall your data is always safe.
- ./volumes/MXWeather/data:/opt/CumulusMX/data
- ./volumes/MXWeather/backup:/opt/CumulusMX/backup
- ./volumes/MXWeather/MXdiags:/opt/CumulusMX/MXdiags
- ./volumes/MXWeather/config:/opt/CumulusMX/config
- ./volumes/MXWeather/publicweb:/opt/CumulusMX/publicweb
- ./volumes/MXWeather/utils:/opt/CumulusMX/utils
# - ./volumes/MXWeather/tmp/Easyweather.dat:/opt/CumulusMX/Easyweather.dat # Required to allow for no USB device, and allows for injecting custom EasyWeather data
# - ./volumes/MXWeather/tmp/Easyweatherplus.dat:/opt/CumulusMX/Easyweatherplus.dat # Required to allow for no USB device, and allows for injecting custom EasyWeather data
ports:
- 8998:8998
- 80:80