When i create image form mysql container it doesn't include openedx db

i’m creating new image of the mysql container which get initialize while we run tutor. Now after image creation i’m creating container from this image on some other server and when i go inside the container i don’t see “openedx” database included in this container.

Any help on this

Hi @vmady! Docker containers are what we call “stateless”. In other terms, they do not contain data that changes, such as data that would be stored in a database. Such data is stored inside volumes. You should take some time to learn more about containers, there are great courses for that on edx.org.