Basic image for MacDash: https://github.com/MacDash/MacDash
281
To run:
docker run -d -p 8000:8000 -e JSS_URL=https://JSSURL -e JSS_USER=admin -e JSS_PASSWORD=password --name macdash bruienne/macdash
Current Dockerfile:
FROM python:2
RUN mkdir /macdash
RUN git clone https://github.com/MacDash/MacDash.git /macdash
RUN cd /macdash && pip install -r requirements.txt
RUN cd /macdash && sed -i "s/USE_POSTGRES\ =\ True/USE_POSTGRES = False/" macdash/settings.py
RUN cd /macdash && python manage.py migrate && \
python manage.py createsuperuser --noinput --username superuser --email admin@localhost
COPY ./example_custom_settings.py /macdash/custom_settings.py
WORKDIR /macdash
CMD ["python","manage.py","runserver"]
Content type
Image
Digest
Size
277.3 MB
Last updated
about 10 years ago
docker pull bruienne/macdash