You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ print("\n\n".join([str(el) for el in elements]))
86
86
The following instructions are intended to help you get up and running using Docker to interact with `unstructured`.
87
87
See [here](https://docs.docker.com/get-docker/) if you don't already have docker installed on your machine.
88
88
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.
90
90
91
91
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.
92
92
@@ -98,7 +98,7 @@ Once pulled, you can create a container from this image and shell to it.
98
98
99
99
```bash
100
100
# 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
102
102
103
103
# this will drop you into a bash shell where the Docker image is running
0 commit comments