Skip to content

Commit

Permalink
added warning to apply execution permissions for bin subfolder (#436)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexeyALeonov authored Sep 20, 2024
1 parent ee561b2 commit fc3ee0e
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,16 @@ The writeability and readability checks are performed on the storage location, n
**Linux Users:** You **must** static mount via /etc/fstab. Failure to do so will put you in high risk of failing audits and getting disqualified. Here's how to do that: [](docId:nZeFxmawYPdgkwUPy6f9s)
{% /callout %}

{% callout type="info" %}
You need to allow an execution for the `bin` subfolder in your storage location
Replace the `<storage-dir>` with your parameter.

```shell
mkdir -p <storage-dir>/bin
chmod +x <storage-dir>/bin
```
{% /callout %}

1. Copy the command into a plain text editor like a `nano`:

```shell
Expand All @@ -51,6 +61,16 @@ docker run --rm -e SETUP="true" \

{% tab label="macOS" %}

{% callout type="info" %}
You need to allow an execution for the `bin` subfolder in your storage location.
Replace the `<storage-dir>` with your parameter.

```shell
mkdir -p <storage-dir>/bin
chmod +x <storage-dir>/bin
```
{% /callout %}

1. Copy the command into a plain text editor (do not use any word processors include Notes):

```shell
Expand Down

0 comments on commit fc3ee0e

Please sign in to comment.