Editing files in docker #31
-
i cloned this from dcoker and i want to to edit the files how do i do it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @Rohan-Developer0, The Getting Started wiki page shows the most common ways of configuring the start page. You should have a look at it. If you want to edit the configuration, you can simply use However, if you want to change the source code (aka. the files), you cannot do that in your Docker container since it is an optimized build. Instead, you should
with your changes on top of my source. Have a look at Getting Started / Fork section of the wiki for more information. Let me know if you have any further questions, and if this comment has resolved your issue please mark it as answered. EDIT: I also added this answer to FAQ Wiki Page |
Beta Was this translation helpful? Give feedback.
Hey @Rohan-Developer0,
The Getting Started wiki page shows the most common ways of configuring the start page. You should have a look at it.
If you want to edit 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 is an optimized build. Instead, you should
fork
the 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