Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

GreenCloud | #1 TOP PROVIDER 2024 SALE | DOUBLE PROMOTIONS with GENOA/9950x | +$2000 GIVEAWAYS

1145146148150151810

Comments

  • GREENCLOUD-ROAD-TO-200K-LETS-GO

    Thanked by 1FAT32
  • GREENCLOUD-ROAD-TO-200K-LETS-GO

    Thanked by 1FAT32
  • Need to move to the next page faster. :|

  • Sitting here watching all these amazing flash deals, staring at my 31 instances with @NDTN and my bank balance.

    I might need a FAT 32 instances instead of 31.

  • GREENCLOUD

  • GREENCLOUD-ROAD-TO-200K-LETS-GO

    Thanked by 1FAT32
  • @stxsh said:
    Sitting here watching all these amazing flash deals, staring at my 31 instances with @NDTN and my bank balance.

    I might need a FAT 32 instances instead of 31.

    U have too much mate, share some here :lol:

  • FAT32FAT32 Administrator, Deal Compiler Extraordinaire

    @stxsh said:
    Sitting here watching all these amazing flash deals, staring at my 31 instances with @NDTN and my bank balance.

    I might need a FAT 32 instances instead of 31.

    Now that's a lot

  • GREENCLOUD-ROAD-TO-200K-LETS-GO

    Thanked by 1FAT32
  • beanman109beanman109 Member, Host Rep, Megathread Squad

    @Smigit said:

    @beanman109 said:

    @sh97 said:

    @beanman109 said:

    @sh97 said:

    @Smigit said:

    @sh97 said:

    @beanman109 said:

    @sh97 said:

    @beanman109 said:
    can anyone recommend a self hosted imgur alternative, preferably with a admin page to authenticate before uploading photos

    bonus points if its got a docker image
    bonus bonus points if it has an option to randomize the image file name when you upload and doesn't have a publicly accessible directory of all images like img.ihostart.com does

    zipline, been using for 2 years now.
    edit: cumrade zgato beat me to it.

    not gonna lie i think it might be chibisafe for me, i can't get zipline working by pasting the docker-compose directly from the web into my machine and that might be a deal breaker

    version: '3'
    services:
      postgres:
        image: postgres:15
        restart: unless-stopped
        environment:
          - POSTGRES_USER=x
          - POSTGRES_PASSWORD=xx
          - POSTGRES_DATABASE=postgres
        volumes:
          - /root/zipline/pg_data:/var/lib/postgresql/data
        healthcheck:
          test: ['CMD-SHELL', 'pg_isready -U postgres']
          interval: 10s
          timeout: 5s
          retries: 5
    
      zipline:
        image: ghcr.io/diced/zipline
        ports:
          - '59591:4545'
        restart: unless-stopped
        environment:
          - MFA_TOTP_ENABLED=true
          - WEBSITE_SHOW_FILES_PER_USER=true
          - WEBSITE_TITLE=Zipline-Secure
          - CORE_RETURN_HTTPS=true
          - CORE_SECRET=calinrocks
          - CORE_HOST=0.0.0.0
          - CORE_PORT=4545
          - CORE_DATABASE_URL=postgres://x:xx@postgres/postgres
          - CORE_LOGGER=true
        volumes:
          - '/root/zipline/uploads:/zipline/uploads'
          - '/root/zipline/public:/zipline/public'
        depends_on:
          - 'postgres'
    

    This isn’t a secret.

    - CORE_SECRET=calinrocks

    yea replace that and postgres stuff with actual values

    it still dies with that and idk how to set postgres stuff closest i get to a real db is an SQLite file

    zipline_1 | [2025-02-20T11:20:31 ERROR server] DATABASE_URL not set, exiting...

    whats your core database url, make sure that and db settings are correct.

    i wouldn't have a fucking clue lmao databases go right over my head, i just pasted the exact compose you sent into a fresh VM and that's the error

    maybe best i stick to something simplier

    This just worked for me, if you haven’t got it going yet. 5432 being the default port for postgres. change CORE_SECRET (min 32 characters) as well as username and password in both places. Sure there’s other config worth looking at

    services:
      postgresql:
        image: postgres:16
        restart: unless-stopped
        environment:
          POSTGRES_USER: username
          POSTGRES_PASSWORD: password
          POSTGRES_DB: zipline-db
        volumes:
          - pgdata:/var/lib/postgresql/data
        healthcheck:
          test: ['CMD', 'pg_isready', '-U', 'zipline']
          interval: 10s
          timeout: 5s
          retries: 5
    
      zipline:
        image: ghcr.io/diced/zipline
        ports:
          - '3000:3000'
        environment:
          - CORE_SECRET=blahblah-32-character-limit-on-this-secret
          - DATABASE_URL=postgres://username:password@postgresql:5432/zipline-db
        depends_on:
          - postgresql
        volumes:
          - './uploads:/zipline/uploads'
          - './public:/zipline/public'
          - './themes:/zipline/themes'
    
    volumes:
      pgdata:
    

    me and @sh97 figured it out in dms
    it was the image version for zipline
    ghcr.io/diced/zipline pulls v4 but the docker-compose is designed around v3

    Thanked by 3sh97 Blembim Smigit
  • GREENCLOUD-ROAD-TO-200K-LETS-GO

    Thanked by 1FAT32
  • beanman109beanman109 Member, Host Rep, Megathread Squad

    @beanman109 said:

    @Smigit said:

    @beanman109 said:

    @sh97 said:

    @beanman109 said:

    @sh97 said:

    @Smigit said:

    @sh97 said:

    @beanman109 said:

    @sh97 said:

    @beanman109 said:
    can anyone recommend a self hosted imgur alternative, preferably with a admin page to authenticate before uploading photos

    bonus points if its got a docker image
    bonus bonus points if it has an option to randomize the image file name when you upload and doesn't have a publicly accessible directory of all images like img.ihostart.com does

    zipline, been using for 2 years now.
    edit: cumrade zgato beat me to it.

    not gonna lie i think it might be chibisafe for me, i can't get zipline working by pasting the docker-compose directly from the web into my machine and that might be a deal breaker

    version: '3'
    services:
      postgres:
        image: postgres:15
        restart: unless-stopped
        environment:
          - POSTGRES_USER=x
          - POSTGRES_PASSWORD=xx
          - POSTGRES_DATABASE=postgres
        volumes:
          - /root/zipline/pg_data:/var/lib/postgresql/data
        healthcheck:
          test: ['CMD-SHELL', 'pg_isready -U postgres']
          interval: 10s
          timeout: 5s
          retries: 5
    
      zipline:
        image: ghcr.io/diced/zipline
        ports:
          - '59591:4545'
        restart: unless-stopped
        environment:
          - MFA_TOTP_ENABLED=true
          - WEBSITE_SHOW_FILES_PER_USER=true
          - WEBSITE_TITLE=Zipline-Secure
          - CORE_RETURN_HTTPS=true
          - CORE_SECRET=calinrocks
          - CORE_HOST=0.0.0.0
          - CORE_PORT=4545
          - CORE_DATABASE_URL=postgres://x:xx@postgres/postgres
          - CORE_LOGGER=true
        volumes:
          - '/root/zipline/uploads:/zipline/uploads'
          - '/root/zipline/public:/zipline/public'
        depends_on:
          - 'postgres'
    

    This isn’t a secret.

    - CORE_SECRET=calinrocks

    yea replace that and postgres stuff with actual values

    it still dies with that and idk how to set postgres stuff closest i get to a real db is an SQLite file

    zipline_1 | [2025-02-20T11:20:31 ERROR server] DATABASE_URL not set, exiting...

    whats your core database url, make sure that and db settings are correct.

    i wouldn't have a fucking clue lmao databases go right over my head, i just pasted the exact compose you sent into a fresh VM and that's the error

    maybe best i stick to something simplier

    This just worked for me, if you haven’t got it going yet. 5432 being the default port for postgres. change CORE_SECRET (min 32 characters) as well as username and password in both places. Sure there’s other config worth looking at

    services:
      postgresql:
        image: postgres:16
        restart: unless-stopped
        environment:
          POSTGRES_USER: username
          POSTGRES_PASSWORD: password
          POSTGRES_DB: zipline-db
        volumes:
          - pgdata:/var/lib/postgresql/data
        healthcheck:
          test: ['CMD', 'pg_isready', '-U', 'zipline']
          interval: 10s
          timeout: 5s
          retries: 5
    
      zipline:
        image: ghcr.io/diced/zipline
        ports:
          - '3000:3000'
        environment:
          - CORE_SECRET=blahblah-32-character-limit-on-this-secret
          - DATABASE_URL=postgres://username:password@postgresql:5432/zipline-db
        depends_on:
          - postgresql
        volumes:
          - './uploads:/zipline/uploads'
          - './public:/zipline/public'
          - './themes:/zipline/themes'
    
    volumes:
      pgdata:
    

    me and @sh97 figured it out in dms
    it was the image version for zipline
    ghcr.io/diced/zipline pulls v4 but the docker-compose is designed around v3

    however i am now a proud chibisafer, tried zipline but i think i like chibisafes QOL features a bit more

    Thanked by 2Blembim plumberg
  • stxshstxsh Member
    edited February 2025

    @cainyxues said:

    @stxsh said:
    Sitting here watching all these amazing flash deals, staring at my 31 instances with @NDTN and my bank balance.

    I might need a FAT 32 instances instead of 31.

    U have too much mate, share some here :lol:

    lol this was over the last few years, various locations (they have so many). They make these deals too attractive.

    Thanked by 1cainyxues
  • GREENCLOUD-ROAD-TO-200K-LETS-GO

    Thanked by 1FAT32
  • Oh my gaga.Too many now i can not reach each comment :#

  • GREENCLOUD-ROAD-TO-200K-LETS-GO

    Thanked by 1FAT32
  • Now it's too crowded.

  • GREENCLOUD-ROAD-TO-200K-LETS-GO

    Thanked by 1FAT32
  • GREENCLOUD-ROAD-TO-200K-LETS-GO

    Thanked by 1FAT32
  • GREENCLOUD-ROAD-TO-200K-LETS-GO

    Thanked by 1FAT32
  • GREENCLOUD-ROAD-TO-200K-LETS-GO

    Thanked by 1FAT32
  • GREENCLOUD-ROAD-TO-200K-LETS-GO
    Thanked by 1FAT32

    Thanked by 1FAT32
  • ariq01ariq01 Veteran
    edited February 2025

    @beanman109 said: @beanman109 said:
    can anyone recommend a self hosted imgur alternative, preferably with a admin page to authenticate before uploading photos

    I found out 3 days ago: chevereto. If self hosted only 1 admin can upload images, cannot have multiple users to upload images. Everything written in php, can be customised.

    Chibisafe is also good i guess (i never deploy it, but i will)

  • beanman109beanman109 Member, Host Rep, Megathread Squad

    @FAT32 you don't have to thank all those comments let be real they're not coming back to this thread

  • GREENCLOUD-ROAD-TO-200K-LETS-GO

    Thanked by 1FAT32
  • FAT32FAT32 Administrator, Deal Compiler Extraordinaire

    @beanman109 said:
    @FAT32 you don't have to thank all those comments let be real they're not coming back to this thread

    Thanked

  • GREENCLOUD-ROAD-TO-200K-LETS-GO

    Thanked by 1FAT32
  • GREENCLOUD-ROAD-TO-200K-LETS-GO

    Thanked by 1FAT32
  • 151K views, 49K to go!

  • GREENCLOUD-ROAD-TO-200K-LETS-GO

    Thanked by 1FAT32
Sign In or Register to comment.