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
+41Lines changed: 41 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,8 +94,49 @@ In particular, the following are known limitations which we intend to address:
94
94
* No support for missing data
95
95
* No support for compressed or encrypted objects
96
96
97
+
## Running
98
+
99
+
There are various ways to run the S3 Active Storage server.
100
+
101
+
### Running in a container
102
+
103
+
The simplest method is to run it in a container using a pre-built image:
104
+
105
+
```sh
106
+
docker run -it --detach --rm --net=host --name s3-active-storage ghcr.io/stackhpc/s3-active-storage-rs:latest
107
+
```
108
+
109
+
Images are published to [GitHub Container Registry](https://github.com/stackhpc/s3-active-storage-rs/pkgs/container/s3-active-storage-rs) when the project is released.
110
+
The `latest` tag corresponds to the most recent release, or you can use a specific release e.g. `0.1.0`.
111
+
112
+
This method does not require access to the source code.
113
+
114
+
### Building a container image
115
+
116
+
If you need to use unreleased changes, but still want to run in a container, it is possible to build an image.
0 commit comments