You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a database container it makes sense to store the database data in a volume, so you won't lose the data when you kill container or update the image. E.g. the PostgreSQL Dockerfile has 'VOLUME /var/lib/postgresql/data'.
The oracle-12c Dockerfiles do currently not do this. Are they designed for a different use case? E.g. throw-away test databases?
How would one add support for volumes? It looks like step2 would need to be split and partially moved to a runtime step?
Thanks!
The text was updated successfully, but these errors were encountered:
For a database container it makes sense to store the database data in a volume, so you won't lose the data when you kill container or update the image. E.g. the PostgreSQL Dockerfile has 'VOLUME /var/lib/postgresql/data'.
The oracle-12c Dockerfiles do currently not do this. Are they designed for a different use case? E.g. throw-away test databases?
How would one add support for volumes? It looks like step2 would need to be split and partially moved to a runtime step?
Thanks!
The text was updated successfully, but these errors were encountered: