Inedo Community Forums Forums
    • Recent
    • Tags
    • Popular
    • Login
    1. Home
    2. certificatemanager_4002
    3. Best

    Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.

    If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!

    C Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 9
    • Posts 14
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Proget: Move data to another folder

      @Sigve-opedal_6476
      Here is a solution
      Create a network.
      With that proget can reach inedo as they will be into the same network.
      docker network create inedo-net

      Inedo
      docker run -d --name inedodb
      --network inedo-net
      -v ./inedo-data:/var/lib/postgresql/data
      proget.inedo.com/productimages/inedo/inedodb:17.6

      sudo chown 1000:1000 proget-database

      Proget
      docker run -d --name proget
      --network inedo-net
      -p 8624:80
      -v ./proget-packages:/var/proget/packages
      -v ./proget-backups:/var/proget/backups
      -v ./proget-database:/var/proget/database
      -e INEDO_DB_TYPE=inedodb
      -e INEDO_DB_HOST=inedodb
      -e INEDO_DB_USER=proget \
      proget.inedo.com/productimages/inedo/proget:latest

      I got also lot's of issue because the database directory must be empty.
      I hope it will help you.

      posted in Support
      C
      certificatemanager_4002
    • 1 / 1