Skip to content
Can Cellek edited this page Apr 20, 2023 · 16 revisions

Is It Possible To Edit Files In Docker?

If you want to edit only the configuration, you can simply use config edit command and change anything provided there.

However, if you want to change the source code (aka. the files), you cannot do that in your Docker container since it serves an optimized build. Instead, you should fork this git repository (not the docker image from registry) and make your changes within the source code. With this way, you will be cloning the source code of this project and

  • You will have the control over the source code
  • You can deploy to web
  • Create a docker image
  • Host it locally
  • Pretty much do anything you desire

with your changes on top of my source.

Have a look at Getting Started / Fork section of the wiki for more information.

Clone this wiki locally