File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -161,13 +161,13 @@ However, some software installs to `/opt/examplepkg` or another
161161location outside of ` /usr ` , and may include all three types of data
162162undernath its single toplevel directory. For example, it
163163may write log files to ` /opt/examplepkg/logs ` . A simple way to handle
164- this is to change the directories that need to be writble to symbolic links
164+ this is to change the directories that need to be writable to symbolic links
165165to ` /var ` :
166166
167167``` dockerfile
168168RUN apt|dnf install examplepkg && \
169169 mv /opt/examplepkg/logs /var/log/examplepkg && \
170- ln -sr /opt/examplepkg/logs /var/log/ examplepkg
170+ ln -sr /var/log/examplepkg /opt/ examplepkg/logs
171171```
172172
173173The [ Fedora/CentOS bootc puppet example] ( https://gitlab.com/fedora/bootc/examples/-/tree/main/opt-puppet )
You can’t perform that action at this time.
0 commit comments