Skip to content

Commit 92fab44

Browse files
committed
fix(image): fix default image docker permissions
1 parent b4f472f commit 92fab44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/components/app-images/app-images.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ export class AppImagesComponent implements OnInit, OnDestroy {
223223
'fi',
224224
'',
225225
'# example for giving docker access to abstruse user',
226-
'if [ -f /var/run/docker.sock ]; then',
226+
'if [ -e /var/run/docker.sock ]; then',
227227
' sudo chown -R 1000:100 /var/run/docker.sock > /dev/null 2>&1',
228228
'fi'
229229
].join('\n')

0 commit comments

Comments
 (0)