Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions HUMANS.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ To restore:
```bash
docker stop woltspace && docker rm woltspace
docker run -d --name woltspace \
--restart unless-stopped \
-v ~/.woltspace/wolts-backup-<tag>:/workspace/wolts:rw \
-p 7777:7777 \
woltspace-backup:<tag>
Expand Down
3 changes: 3 additions & 0 deletions woltspace
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ _start_container() {
mkdir -p "$WOLTS_DIR/.claude"
docker run -d \
--name "$CONTAINER_NAME" \
--restart unless-stopped \
--env-file "$WOLTS_DIR/.env" \
-e HOST_UID=$(id -u) \
-e HOST_GID=$(id -g) \
Expand Down Expand Up @@ -478,6 +479,7 @@ fi
echo ""
echo "restore complete. run with:"
echo " docker run -d --name woltspace \\"
echo " --restart unless-stopped \\"
echo " -v $DIR/wolts:/workspace/wolts:rw \\"
echo " -p 7777:7777 \\"
echo " woltspace-backup:$TAG"
Expand All @@ -499,6 +501,7 @@ RESTORE
echo " cd woltspace-backup-$TAG && bash restore.sh"
else
echo " docker run -d --name $CONTAINER_NAME \\"
echo " --restart unless-stopped \\"
echo " -v $BACKUP_DIR:/workspace/wolts:rw \\"
echo " -p ${WOLTSPACE_PORT:-7777}:7777 \\"
echo " woltspace-backup:$TAG"
Expand Down