• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

V3 Docker Compose + Bulk Import

PaulGit

Chevereto Member
I have successfully built my own V3 docker image from the repository https://github.com/chevereto/v3-docker-production. From my initial testing, all seems to work very well and I can see the data volumes for storage and databases.

Where I have failed is on the bulk-importing, I cannot see where I am meant to store my files ready for importing when using this docker image? Are there changes that I need to make to the Docker Compose file?

Is there anything else I should be doing or am I perhaps missing something? If this is working with the V4 Docker image then I will upgrade my license.
 
Yes, you need to add the bind mounts to the volumes declared in the Dockerfile.


Code:
volumes:
      - type: bind
        source: localpath
        target: /var/www/html/importing

You can also bind each folder, like a different path for no-parse, albums, users, etc.
 
Back
Top