giddy

joined 1 year ago
[–] [email protected] 1 points 1 year ago

That is better than my NUC and I have no performance issues

[–] [email protected] 3 points 1 year ago (2 children)

How is NC using redis? I can't see any links from the NC container

[–] [email protected] 1 points 1 year ago (1 children)

Can I ask why the separate NC container for cron? Also, I presume the mysqldump container is for easy db backups?

[–] [email protected] 4 points 1 year ago

No you can use other databases. It is separate here

[–] [email protected] 4 points 1 year ago

+1 for Vaultwarden. Much simpler to set up

[–] [email protected] 28 points 1 year ago (3 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

[–] [email protected] 13 points 1 year ago (4 children)

I am genuinely interested in how WoW does on the steam deck. When I used to play I had close to 20 buttons I needed easy access to

view more: ‹ prev next ›