Skip to content

Commit b746cb0

Browse files
docs: update README with notes about multi-platform (#433)
1 parent 4148834 commit b746cb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ print("\n\n".join([str(el) for el in elements]))
8686
The following instructions are intended to help you get up and running using Docker to interact with `unstructured`.
8787
See [here](https://docs.docker.com/get-docker/) if you don't already have docker installed on your machine.
8888

89-
NOTE: the image is only supported for x86_64 hardware and known to have issues on Apple silicon.
89+
NOTE: we build multi-platform images to support both x86_64 and Apple silicon hardware. `docker pull` should download the corresponding image for your architecture, but you can specify with `--platform` (e.g. `--platform linux/amd64`) if needed.
9090

9191
We build Docker images for all pushes to `main`. We tag each image with the corresponding short commit hash (e.g. `fbc7a69`) and the application version (e.g. `0.5.5-dev1`). We also tag the most recent image with `latest`. To leverage this, `docker pull` from our image repository.
9292

@@ -98,7 +98,7 @@ Once pulled, you can create a container from this image and shell to it.
9898

9999
```bash
100100
# create the container
101-
docker run --platform linux/amd64 -d -t --name unstructured quay.io/unstructured-io/unstructured:latest
101+
docker run -dt --name unstructured quay.io/unstructured-io/unstructured:latest
102102

103103
# this will drop you into a bash shell where the Docker image is running
104104
docker exec -it unstructured bash

0 commit comments

Comments
 (0)