https://github.com/adrum/docker-wifi
https://github.com/adrum/docker-wifi
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/adrum/docker-wifi
- Owner: adrum
- Created: 2019-05-24T03:36:57.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-24T03:37:29.000Z (about 7 years ago)
- Last Synced: 2025-11-02T14:38:02.551Z (8 months ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker Wifi
This use the wpa_supplicant package to generate a hashed psk for specific SSID to be used on any linux machine with wpa_supplicant installed. I'm using these specifically for Raspberry Pis.
`sudo docker run adrum/wifi wpa_passphrase "ssid" "password"`
Which generates the block below to be placed in `/etc/wpa_supplicant/wpa_supplicant.conf`.
```
network={
ssid="ssid"
#psk="password"
psk=44116ea881531996d8a23af58b376d70f196057429c258f529577a26e727ec1b
}
```