15 lines
328 B
Markdown
15 lines
328 B
Markdown
|
|
cd ~/Dokumenti/scripts/Fitnes-tracker
|
||
|
|
|
||
|
|
# Stop the container
|
||
|
|
docker compose down
|
||
|
|
|
||
|
|
# Create the folder if it doesn't exist (safe to run even if it exists)
|
||
|
|
mkdir -p fitness-data
|
||
|
|
|
||
|
|
# Make sure container user (uid 1000) can write there
|
||
|
|
sudo chown -R 1000:1000 fitness-data
|
||
|
|
sudo chmod 775 fitness-data
|
||
|
|
|
||
|
|
# Start again
|
||
|
|
docker compose up
|