Jump to content

jrjong11

Members
  • Posts

    1
  • Joined

  • Last visited

Posts posted by jrjong11

  1. On 5/21/2020 at 11:41 PM, Douglas_D said:

    Hi all, I have a new one on the way and am looking at self-hosted baby tracking. 

     

    I've been trying to figure out how to setup https://one2step.net/aka-ms-remoteconnect-minecraft for quite some time now. Does anyone have any tutorials that may closely resemble the install method outlined under the Docker section of this github? I've tried going through community apps to install it by searching the Docker Hub, but it looks like that interface isn't able to access any of the parameters that need to be edited to make this work.

     

    I also watched SpaceInvaderOne's Jitsi installation video that uses docker-compose with hopes it would help me figure out what is happening with this docker, but it doesn't seem to fit the same format for configuration files. Anyone else out there that's a wizard with docker-compose willing to take a look at the instructions and point me in the right direction? Maybe even more documentation or videos to watch?

     

    As a last resort, I tried to install Docker for Windows on my unRaid Win10 VM, which was really a bad idea. It broke my VM until I could boot into it baremetal and strip Docker installation out and run CCleaner to remove residual files.

     

    Here are the instructions from babybuddy to save someone a click

     

    And the Dockerfile

    
    FROM python:3 as app
    ENV PYTHONUNBUFFERED 1
    RUN pip install --upgrade pipenv gunicorn
    WORKDIR /app
    COPY Pipfile /app/
    COPY Pipfile.lock /app/
    RUN pipenv install --deploy --system
    ADD manage.py /app/
    ADD api /app/api
    ADD babybuddy /app/babybuddy
    ADD core /app/core
    ADD dashboard /app/dashboard
    ADD reports /app/reports
    ADD static /app/static
    ADD etc/gunicorn.py /app/

     

    Any Update on this OP?

×
×
  • Create New...