Skip to content

Commit

Permalink
Merge pull request #274 from getmaxun/upgrade-instruct
Browse files Browse the repository at this point in the history
feat: clearer upgrade instructions
  • Loading branch information
amhsirak authored Dec 20, 2024
2 parents 236e741 + 6da2f6a commit ccf5cf6
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/components/molecules/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,11 @@ export const NavBar: React.FC<NavBarProps> = ({ recordingName, isRecording }) =>
<Box sx={{ marginLeft: '30px', background: '#cfd0d1', padding: 1, borderRadius: 3 }}>
<code style={{ color: 'black' }}>
<p>Run the commands below</p>
# cd to project directory (eg: maxun)
<br />
cd maxun
<br />
<br />
# pull latest changes
<br />
git pull origin master
Expand All @@ -228,6 +233,16 @@ export const NavBar: React.FC<NavBarProps> = ({ recordingName, isRecording }) =>
<Box sx={{ marginLeft: '30px', background: '#cfd0d1', padding: 1, borderRadius: 3 }}>
<code style={{ color: 'black' }}>
<p>Run the commands below</p>
# cd to project directory (eg: maxun)
<br />
cd maxun
<br />
<br />
# stop the working containers
<br />
docker-compose down
<br />
<br />
# pull latest docker images
<br />
docker-compose pull
Expand Down

0 comments on commit ccf5cf6

Please sign in to comment.