Skip to content

Commit ae6ea41

Browse files
committed
Added env vars to docker-compose.yml, fixed typo in webgui pass var
1 parent be762bb commit ae6ea41

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Several environment variables are made available in this docker image to aid in
4343
| RASPAP_SSID_PASS | The SSID password | ChangeMe |
4444
| RASPAP_COUNTRY | The SSID country code | GB |
4545
| RASPAP_WEBGUI_USER | The admin username for the RaspAP user interface | admin |
46-
| RASPAP_WEBGUI_PASSWORD | The admin password for the RaspAP user interface | secret |
46+
| RASPAP_WEBGUI_PASS | The admin password for the RaspAP user interface | secret |
4747
| RASPAP_WEBGUI_PORT | The RaspAP web user interface port | 80 |
4848

4949
Some further configuration is also possible through the use of the following prefixed environment variables, in the form RASAPAP_\[target]_\[key]

docker-compose.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ services:
1212
- RASPAP_SSID_PASS=ChangeMe
1313
- RASPAP_COUNTRY=GB
1414
- RASPAP_WEBGUI_USER=admin
15-
- RASPAP_WEBGUI_PASSWORD=secret
15+
- RASPAP_WEBGUI_PASS=secret
1616
- RASPAP_WEBGUI_PORT=80
1717
cap_add:
1818
- SYS_ADMIN
1919
volumes:
2020
- /sys/fs/cgroup:/sys/fs/cgroup:rw
21-
restart: unless-stopped
21+
restart: unless-stopped

0 commit comments

Comments
 (0)