Skip to content

Commit

Permalink
fix: linux mount (#3)
Browse files Browse the repository at this point in the history
Signed-off-by: axel7083 <[email protected]>
  • Loading branch information
axel7083 authored and jeffmaury committed Feb 3, 2025
1 parent 61bcb90 commit 3b3d7f0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,17 +205,17 @@ export class InstructlabManager {
AutoRemove: true,
Mounts: [
{
Target: '/instructlab/.cache/instructlab',
Target: '/instructlab/.cache/instructlab:Z',
Source: path.join(folder, '.cache'),
Type: 'bind',
},
{
Target: '/instructlab/.config/instructlab',
Target: '/instructlab/.config/instructlab:Z',
Source: path.join(folder, '.config'),
Type: 'bind',
},
{
Target: '/instructlab/.local/share/instructlab',
Target: '/instructlab/.local/share/instructlab:Z',
Source: path.join(folder, '.local'),
Type: 'bind',
},
Expand Down

0 comments on commit 3b3d7f0

Please sign in to comment.