Your reality, sir, is lies and balderdash… and I’m delighted to say that I have no grasp of it whatsoever!

  • Baron Munchausen
  • 1 Post
  • 26 Comments
Joined 3 years ago
cake
Cake day: June 12th, 2023

help-circle



  • Thanks. I took another look at your documentation and decided to re-install everything. You’re right, I’d used the simple “test” compose script from your site. After a little trial and error, I got everything working properly with this:

    services:
      redis:
        image: redis:7-alpine
        container_name: journiv-redis
        restart: unless-stopped
        volumes:
          - /mnt/dietpi_userdata/docker-data/journiv/redis-data:/data
        command: redis-server --appendonly yes
    
      journiv:
        image: swalabtech/journiv-app:latest
        container_name: journiv
        ports:
          - "8111:8000"
        environment:
          - SECRET_KEY=XXX
          - DOMAIN_NAME=XXX
          - CELERY_BROKER_URL=redis://redis:6379/0
          - CELERY_RESULT_BACKEND=redis://redis:6379/0
          - REDIS_URL=redis://redis:6379/0
        volumes:
          - /mnt/dietpi_userdata/docker-data/journiv/data:/data
        restart: unless-stopped
        depends_on:
          - redis
    
      celery-worker:
        image: swalabtech/journiv-app:latest
        container_name: journiv-celery-worker
        entrypoint: []
        command: ["celery", "-A", "app.core.celery_app", "worker", "--loglevel=info"]
        environment:
          - SECRET_KEY=XXX
          - DOMAIN_NAME=XXX
          - CELERY_BROKER_URL=redis://redis:6379/0
          - CELERY_RESULT_BACKEND=redis://redis:6379/0
          - REDIS_URL=redis://redis:6379/0
        volumes:
          - /mnt/dietpi_userdata/docker-data/journiv/data:/data
        restart: unless-stopped
        depends_on:
          - redis
          - journiv
    

    Exports are working!






  • Tenebris Nox@feddit.uktoLinux@lemmy.mlWhy?
    link
    fedilink
    English
    arrow-up
    2
    ·
    4 months ago

    I was a long-time user of One Note and about 8 years ago tried to export some of my notes - which was nigh-on impossible to do regardless of whatever MS says. I realised that I didn’t like feeing I didn’t have full control or ownership and that set me off on a course if self-hosting and linux. I’m not completely there but certainly further on than I was then. I like using linux much more than OSX and certainly Windows (which I stopped using about 2012).