<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ABAP Platform 1909 Docker: commit / persistence of changes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-platform-1909-docker-commit-persistence-of-changes/m-p/12384030#M1994340</link>
    <description>&lt;P&gt;Thanks  &lt;SPAN class="mention-scrubbed"&gt;mumali&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;I have been running my docker in "detached" mode using the -d parameter of docker run so it runs in the background. &lt;/P&gt;</description>
    <pubDate>Fri, 26 Feb 2021 08:38:51 GMT</pubDate>
    <dc:creator>former_member185932</dc:creator>
    <dc:date>2021-02-26T08:38:51Z</dc:date>
    <item>
      <title>ABAP Platform 1909 Docker: commit / persistence of changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-platform-1909-docker-commit-persistence-of-changes/m-p/12384025#M1994335</link>
      <description>&lt;P&gt;I have installed ABAP Platform 1909 Developer Edition using Ubuntu and Docker. I am familiar with the docker commands "run" to start the container, "stop" to stop the container and "start" to restart the container.&lt;/P&gt;
  &lt;P&gt;After stopping the container I can remove it from docker using "docker rm" and then start it again using "docker run". However, the restart results in a fresh installation of the system... any ABAP artefacts created in the previous container are lost.&lt;/P&gt;
  &lt;P&gt;It seems unlikely that I can keep the Ubuntu server running constantly. Is there a way to retain changes to the container even after "docker rm" and "docker run" commands (or a power outage)?&lt;/P&gt;
  &lt;P&gt;Regards,&lt;BR /&gt;JB&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 11:23:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-platform-1909-docker-commit-persistence-of-changes/m-p/12384025#M1994335</guid>
      <dc:creator>former_member185932</dc:creator>
      <dc:date>2021-02-25T11:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Platform 1909 Docker: commit / persistence of changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-platform-1909-docker-commit-persistence-of-changes/m-p/12384026#M1994336</link>
      <description>&lt;P&gt;"Is there a way to retain changes to the container even after "docker rm" and "docker run" commands".&lt;/P&gt;&lt;P&gt;No, but that's actually the whole point of the docker rm command, that will reset the container... &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Instead, you restart the stopped a4h container with&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;docker start -ai a4h&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;That should do the trick! (It's actually the very last thing in the setup instructions)&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 11:44:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-platform-1909-docker-commit-persistence-of-changes/m-p/12384026#M1994336</guid>
      <dc:creator>joltdx</dc:creator>
      <dc:date>2021-02-25T11:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Platform 1909 Docker: commit / persistence of changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-platform-1909-docker-commit-persistence-of-changes/m-p/12384027#M1994337</link>
      <description>&lt;P&gt;Hello  &lt;SPAN class="mention-scrubbed"&gt;jonathan.bourne&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;Removing the container means you are gonna to run it afresh. You can instead shut it down by using the command &lt;EM&gt;docker stop --time 7200 a4h&lt;/EM&gt; in a new console and safely close your docker instance. To restart, simply run the command &lt;EM&gt;docker start -ai a4h. &lt;/EM&gt; Your previous activities in the system will be preserved.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 13:05:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-platform-1909-docker-commit-persistence-of-changes/m-p/12384027#M1994337</guid>
      <dc:creator>Mumali</dc:creator>
      <dc:date>2021-02-25T13:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Platform 1909 Docker: commit / persistence of changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-platform-1909-docker-commit-persistence-of-changes/m-p/12384028#M1994338</link>
      <description>&lt;P&gt;preceded by &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ctrl+c &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;when shutting the system down gracefully. &lt;/P&gt;&lt;P&gt;both work like a 'charm', esp when letting them run their course for a few minutes.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 13:16:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-platform-1909-docker-commit-persistence-of-changes/m-p/12384028#M1994338</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2021-02-25T13:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Platform 1909 Docker: commit / persistence of changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-platform-1909-docker-commit-persistence-of-changes/m-p/12384029#M1994339</link>
      <description>&lt;P&gt;Thanks  &lt;SPAN class="mention-scrubbed"&gt;jorgen_lindqvist41&lt;/SPAN&gt; I did not realise that a stopped container survives a system restart. I had assumed that the containers were lost. So the advice is to only issue the command "docker run" once and then perform container management when restarting the computer / server.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2021 08:37:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-platform-1909-docker-commit-persistence-of-changes/m-p/12384029#M1994339</guid>
      <dc:creator>former_member185932</dc:creator>
      <dc:date>2021-02-26T08:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Platform 1909 Docker: commit / persistence of changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-platform-1909-docker-commit-persistence-of-changes/m-p/12384030#M1994340</link>
      <description>&lt;P&gt;Thanks  &lt;SPAN class="mention-scrubbed"&gt;mumali&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;I have been running my docker in "detached" mode using the -d parameter of docker run so it runs in the background. &lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2021 08:38:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-platform-1909-docker-commit-persistence-of-changes/m-p/12384030#M1994340</guid>
      <dc:creator>former_member185932</dc:creator>
      <dc:date>2021-02-26T08:38:51Z</dc:date>
    </item>
  </channel>
</rss>

