giddy

joined 1 year ago
[–] giddy@aussie.zone 4 points 2 weeks ago

I remember many years ago when Scott Adams started going on about affirmations. That was the first hint of his descent into lunacy

[–] giddy@aussie.zone 3 points 4 weeks ago

Impossible Mission on the Commodore 64. The running animation was mind blowing for the time

[–] giddy@aussie.zone 1 points 1 month ago

It is possible (but tricky) to self host the FF sync server

[–] giddy@aussie.zone 6 points 1 month ago

Been over 30 years still don't know

[–] giddy@aussie.zone 2 points 1 month ago

another day older and deeper in debt

[–] giddy@aussie.zone 4 points 2 months ago (2 children)

Have you tried Silverblue? If Bluefin's Gnome customisation isn't for you I expect Silverblue would be much closer to Workstation

 

Hey all,

I have given up hope of hosting my own mail server but was hoping for one that would serve as an archive -

  • downloads new emails via IMAP from my mail provider on a regular basis
  • allows my mail clients to connect via IMAP to view and search emails

Any suggestions for a docker solution for this?

Thanks

[–] giddy@aussie.zone 2 points 2 months ago

This article is from 2021...

[–] giddy@aussie.zone 2 points 2 months ago

I had zero problems. The guy turned up early and was done in a couple of hours. Service has been rock solid since.

Do NBN sub-contract? Sounds like you got a dodgy subbie

 

Hi all,

I have had several shots at self hosting email over the years and my last attempt failed due to my home IP being in a dynamic pool. I thought I might try again, this time with a basic web hosting provider that I could set up email on. Any suggestions for a free/cheap provider with decent uptime?

Thanks

[–] giddy@aussie.zone 0 points 11 months ago (2 children)

Have they actually built any of these reactors?

[–] giddy@aussie.zone 0 points 1 year ago (2 children)

I seriously suggest you give Nextcloud another go, this time under Docker. Very simple to do.

Save the following in a new folder as docker-compose.yml

version: '3'

volumes:
  db:

services:

  nextcloud-app:
    image: nextcloud
    container_name: nextcloud-app
    restart: always
    volumes:
      - ./data:/var/www/html
    environment:
      - MYSQL_PASSWORD=changeme
      - MYSQL_DATABASE=nextcloud
      - MYSQL_USER=nextcloud
      - MYSQL_HOST=nextcloud-db
    ports:
      - "80:80"
    links:
      - nextcloud-db

  nextcloud-db:
    image: mariadb
    container_name: nextcloud-db
    restart: always
    command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
    volumes:
      - db:/var/lib/mysql
    environment:
      - MYSQL_ROOT_PASSWORD=changeme
      - MYSQL_PASSWORD=changeme
      - MYSQL_DATABASE=nextcloud
      - MYSQL_USER=nextcloud

run this command in the folder -

docker-compose up -d

open http://localhost