mirror of
https://github.com/NotAShelf/air-quality-monitor.git
synced 2025-11-02 03:58:44 +00:00
init
This commit is contained in:
commit
9df325b73e
10 changed files with 268 additions and 0 deletions
13
scripts/install.sh
Normal file
13
scripts/install.sh
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#!/bin/bash
|
||||
# install.sh
|
||||
|
||||
cd ../
|
||||
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y python3 python3-pip python3-dev libffi-dev libssl-dev
|
||||
|
||||
curl -sSL https://get.docker.com | sh
|
||||
sudo usermod -aG docker ${USER}
|
||||
sudo pip3 install docker-compose
|
||||
sudo systemctl enable docker
|
||||
newgrp docker
|
||||
Loading…
Add table
Add a link
Reference in a new issue