For me it's the vertical size, fits perfect in my hand and almost all newer phones are longer.
Right? Maybe a little research would help? I don't know where she was commuting to, but picking an apartment up in Spring probably wasn't the best choice
Aww, cats gonna explore!
Yeah it seems like HA OS is the way to go, running the separate Docker containers has been a headache and breaks/take time more than it's worth
For anyone trying to google a solution, I got it to work with the below in Portainer
version: '3.7'
services:
api:
image: 'gthole/drink-stash:latest'
init: true
restart: 'always'
environment:
- SECRET_KEY=*enter-a-key-here*
- ALLOWED_HOSTS=*enter-ip-here*
- DJANGO_SUPERUSER_USERNAME=*can-be-whatever*
- DJANGO_SUPERUSER_EMAIL=*duh*
- DJANGO_SUPERUSER_PASSWORD=*make-it-up*
- DJANGO_SUPERUSER_FIRST_NAME=*John*
- DJANGO_SUPERUSER_LAST_NAME=*Smith*
- INITIAL_FIXTURES=recipes
ports:
- 8081:8000
volumes:
- /volume1/docker/drink-stash/data:/data
- /volume1/docker/drink-stash/public:/public
Finally got it to work! Thanks for your help, I took another stab at it after a few weeks of learning other things and it clicked
Hmm, no errors popped up and the container is running. In the Container Manager details it shows the port 8081, so not sure...I'll try to troubleshoot some more, but I really appreciate you taking the time!
Well that did allow the Portainer to compile without error and deploy so I really appreciate the help! When navigating to the http://(my ip):8081 though I get a white page with "Bad Request (400)" on it
Not sure on the terms, but I did change the volume lines to direct to folders I pre-made in /volume1/drink-stash/data (same for public)
Well, with "- SECRET_KEY=" I at least got a different error, a bind mount fail?
Bluebeam