I have an image derived from the Postgres official image, whose Dockerfile includes the following:
VOLUME /var/lib/postgresql/data
I'd like to create my own image based on this official image, but I don't want it to reference any volume. I'd like the Postgres data to be inside my image.
Any ideas please?