3a0bb58430
* Create Docker-ReadMe.md This is the containerized version of Eric Elewin's Pi Weather Station Application. * Create docker-compose.yml yml file for AMD64 image * Create docker-compose.yml Docker image for ARM (Raspberry PI) * Create Docker Hub https://hub.docker.com/repository/docker/seanriggs/pi-weather-station * Delete Docker Hub * Create Docker Hub Link.txt https://hub.docker.com/repository/docker/seanriggs/pi-weather-station * Update readme.md * Update readme.md * Create docker-compose.yml armv7-armhf docker compile * Update Docker-ReadMe.md Updated ReadMe to reflect supported architecture.
13 lines
237 B
YAML
13 lines
237 B
YAML
version: '3'
|
|
services:
|
|
weather-station:
|
|
image: seanriggs/pi-weather-station:arm64
|
|
container_name: weather-station
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- appdata:/app
|
|
restart: unless-stopped
|
|
volumes:
|
|
appdata:
|