Skip to content

Commit 40ad18d

Browse files
authored
Merge pull request #30 from MobSF/ajinabraham-patch-1
Update docker_options.md
2 parents 98c019b + bcc5f26 commit 40ad18d

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

docker_options.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ docker run -it --rm -p 8000:8000 opensecurity/mobile-security-framework-mobsf:la
1111
#### For persistence
1212

1313
```bash
14+
# On Linux
1415
mkdir <your_local_dir>
15-
chown -R 9901:9901 <your_local_dir>
16+
sudo chown -R 9901:9901 <your_local_dir>
17+
1618
docker run -it --rm --name mobsf -p 8000:8000 -v <your_local_dir>:/home/mobsf/.MobSF opensecurity/mobile-security-framework-mobsf:latest
1719
```
1820

@@ -48,7 +50,10 @@ docker logs -f --tail 100 mobsf
4850
#### For Postgres and Nginx reverse proxy support
4951

5052
```bash
51-
# Install docker compose.
53+
# On Linux
54+
mkdir -p $HOME/MobSF/mobsf_data
55+
sudo chown -R 9901:9901 $HOME/MobSF/mobsf_data
56+
5257
cd docker
5358

5459
# Download the latest images

0 commit comments

Comments
 (0)