mhzawadi

joined 1 year ago
[–] mhzawadi@lemmy.horwood.cloud 2 points 4 hours ago

I do that too, my home doesn't have IP V6 at all here in the UK. so my dedi proxy's ipv6 to my home.

im 800x600, all the cool games are 800x600

[–] mhzawadi@lemmy.horwood.cloud 19 points 1 week ago (1 children)

Also be advised that wordpress will attract all the internet to try and hack in, so make sure you keep everything up to date

Would recommend OVH for both domain name and DNS, they have DNS APIs so you can get certificates from lets encrypt with ease. Also you could update your zone when your home IP changes

[–] mhzawadi@lemmy.horwood.cloud 31 points 1 week ago (4 children)

What your after is DNS fail over or round robin, round robin would be my option as both sites could be independent

[–] mhzawadi@lemmy.horwood.cloud 2 points 2 weeks ago (1 children)

I would start with a Debian os base, install docker and turn it into a swarm manager. Then look at stacks and how services work, if you find your running your host too hard. You can add a work host and stread out.

Once you have docker swarm running, get portainer running. I use portainer as a visual whats happening on my swarm, but I use the docker cli to start and update all my stacks. I have my stacks in a git repository so that I have a backup and history of what changes I did.

Now your a docker master, of sorts.

[–] mhzawadi@lemmy.horwood.cloud 4 points 2 weeks ago

Your compose file will pull the image when you run it, from the registry it's in

[–] mhzawadi@lemmy.horwood.cloud 4 points 2 weeks ago

I have all external mounts in /mnt, if my container needs to use it then it's in the compose file to use the local mount.

All my compose and stacks are in a git repo, the repo lives in my home dir and pulled fromy Gogs server. That only I can access.

[–] mhzawadi@lemmy.horwood.cloud 3 points 2 weeks ago

can confirm nextcloud news alpha is great, as is the mobile app

[–] mhzawadi@lemmy.horwood.cloud 1 points 2 weeks ago

Thats how I had my setup run, point the volume at NFS

[–] mhzawadi@lemmy.horwood.cloud 3 points 2 weeks ago* (last edited 2 weeks ago) (2 children)

If you have your services in compose files, you can point the volumes to anywhere. Even NFS.

Like the below config

volumes:
   pihole01:
    driver: local
    driver_opts:
      type: 'none'
      o: 'bind'
      device: '/mnt/data/docker/pihole01'
[–] mhzawadi@lemmy.horwood.cloud 2 points 3 weeks ago

I run my own server, not sure on post retention or image size or even number of images. But you can make it so that only you can make communities, you can even make communities admin post only.

I would give the docs a good read and maybe have a look at the GitHub repos

view more: next ›