Umbootstrap
# social
h
Morning all 🙂 , today I am mostly testing my updated forum code which is now installs in U16, using the UmbootStrap starter kit 😀 to @Dean Leigh Still running on a raspberry pi 🤣 https://umbtest.themediawizards.co.uk
s
Pi-nerds unite! 🚀
I finally jumped on the
docker compose
train for my sites and it's been really nice. Juggling docker volumes has been a bit of a weird one to figure out, but now it's stable and I have the easier time updating to a new version of my sites 🙌
d
That's amazing @huwred I will have to give it a try and also try styling it. I am in the middle of transitioning UmBootstrap to Bootstraps new colour system and it's a fair bit of work but at least it will use modern CSS. Will post once it's done.
h
not tried that root yet, but will do as I have docker on my other pi doing stuff 🤣
s
It was building on this blog post: https://cultiv.nl/blog/running-umbraco-sites-in-docker-still-on-a-raspberry-pi-in-my-closet-at-home/ Now I have a `docker-compose.yml`:
Copy code
yml
services:
  umbracalendar:
    container_name: umbracalendar-live
    image: ghcr.io/nul800sebastiaan/umbracalendar.site:latest
    ports:
      - "443:443"
    environment:
      - ASPNETCORE_ENVIRONMENT=Production
    volumes:
      - data:/app/umbraco/Data
      - logs:/app/umbraco/Logs
      - media:/app/wwwroot/media
      - ./DataProtection-Keys:/home/app/.aspnet/DataProtection-Keys
      - ./Hangfire.db:/app/Hangfire.db
      - ./appsettings.Production.json:/app/appsettings.Production.json

volumes:
  data:
  logs:
  media:
And upgrading now is a matter of:
Copy code
docker compose pull
docker compose up -d