|
|
|
|
|
by distracteddev90
4001 days ago
|
|
Docker doesn't force you to put your app and your db on the same image. That is up to you. Most have "App" images and "DB" images separate. If we want to get really specific, Its also common to see the "DB" image split up between the image of the disk where the data is actually persisted, and the image of the actual DB process. This makes it easy to play around with your data under different versions of your DB. |
|