fixed ping not being in Dockerfile

This commit is contained in:
Ross Mountjoy 2020-02-08 20:33:53 -05:00
parent 924add8d76
commit 49fffc23d9
2 changed files with 4 additions and 1 deletions

View File

@ -1,7 +1,7 @@
FROM python:3.8.0-slim FROM python:3.8.0-slim
RUN rm /bin/sh && ln -s /bin/bash /bin/sh RUN rm /bin/sh && ln -s /bin/bash /bin/sh
RUN apt-get update \ RUN apt-get update \
&& apt-get install gcc git -y \ && apt-get install gcc git ping -y \
&& apt-get clean && apt-get clean
COPY ./ DashMachine COPY ./ DashMachine

View File

@ -48,6 +48,9 @@ User: admin
Password: adminadmin Password: adminadmin
``` ```
## Updating
For python, use git. For docker, just pull the latest image and recreate the container.
## Configuration ## Configuration
The user data folder is located at DashMachine/dashmachine/user_data. This is where the config.ini, custom backgrounds/icons, and the database file live. A reference for what can go into the config.ini file can be found on the settings page of the dashmachine by clicking the info icon next to 'Config'. The user data folder is located at DashMachine/dashmachine/user_data. This is where the config.ini, custom backgrounds/icons, and the database file live. A reference for what can go into the config.ini file can be found on the settings page of the dashmachine by clicking the info icon next to 'Config'.