Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
anna-geller committed Dec 20, 2024
1 parent b4fc5f0 commit 57671e5
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions content/docs/02.installation/03.docker-compose.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,3 +310,22 @@ services:
postgres:
image: postgres:16
```

### SIGILL in Java Runtime Environment on MacOS M4

Add the following environment variable to your Kestra container: `-e JAVA_OPTS="-XX:UseSVE=0"`:

```bash
docker run --pull=always --rm -it -p 8080:8080 --user=root -e JAVA_OPTS="-XX:UseSVE=0" -v /var/run/docker.sock:/var/run/docker.sock -v /tmp:/tmp kestra/kestra:latest server local
```

The same in a Docker Compose file:

```yaml
services:
kestra:
image: kestra/kestra:latest
environment:
JAVA_OPTS: "-XX:UseSVE=0"
```

0 comments on commit 57671e5

Please sign in to comment.