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

[openfl-docker] Remove startup script dependency #1091

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
9 changes: 3 additions & 6 deletions .github/workflows/dockerization.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,10 @@ jobs:
docker run --rm \
--network host \
--mount type=bind,source=./cert_agg.tar,target=/certs.tar \
-e CONTAINER_TYPE=aggregator \
example_workspace /home/openfl/openfl-docker/start_actor_in_container.sh &

example_workspace bash -c "tar -xf /certs.tar && fx aggregator start" &

# TODO: Run with two collaborators instead.
docker run --rm \
--network host \
--mount type=bind,source=./cert_col_charlie.tar,target=/certs.tar \
-e CONTAINER_TYPE=collaborator \
-e COL=charlie \
example_workspace /home/openfl/openfl-docker/start_actor_in_container.sh
example_workspace bash -c "tar -xf /certs.tar && fx collaborator certify --import agg_to_col_charlie_signed_cert.zip && fx collaborator start -n charlie"
6 changes: 0 additions & 6 deletions openfl-docker/Makefile

This file was deleted.

14 changes: 0 additions & 14 deletions openfl-docker/start_actor_in_container.sh

This file was deleted.

Loading