Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[v1.7.x] Update the docs to pull the base openfl image from the GHCR repo #1285

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ This method can be used to run federated learning experiments in an isolated env
> **Note:** OpenFL image hosted on `docker.io` has not been updated since the 1.5 release due to a change in namespace. We are working on this issue. In the meantime, use the instructions below to build an image from source.

```bash
docker pull intel/openfl
docker pull ghcr.io/securefederatedai/openfl/openfl:1.7
```

* Build from source:
Expand Down
6 changes: 3 additions & 3 deletions openfl-docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ To develop or simulate experiments within a container, build the base image (or

```shell
# Pull latest stable base image
$> docker pull intel/openfl
$> docker pull ghcr.io/securefederatedai/openfl/openfl:1.7
teoparvanov marked this conversation as resolved.
Show resolved Hide resolved

# Or, build a base image from the latest source code
$> docker build . -t openfl -f Dockerfile.base \
--build-arg OPENFL_REVISION=https://github.com/securefederatedai/openfl.git@develop
--build-arg OPENFL_REVISION=https://github.com/securefederatedai/openfl.git@v1.7
```

Run the container:
```shell
user@vm:~/openfl$ docker run -it --rm openfl:latest bash
user@vm:~/openfl$ docker run -it --rm ghcr.io/securefederatedai/openfl/openfl:1.7 bash
user@7b40624c207a:/$ fx
OpenFL - Open Federated Learning

Expand Down
Loading