Skip to content

Commit

Permalink
feat(framework:skip) Update default flwr version in Docker Compose to…
Browse files Browse the repository at this point in the history
… 1.11.1 (#4191)

Signed-off-by: Robert Steiner <robert@flower.ai>
  • Loading branch information
Robert-Steiner authored Sep 16, 2024
1 parent f1d9525 commit c874698
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions src/docker/complete/compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
# create a SuperLink service
superlink:
image: flwr/superlink:${FLWR_VERSION:-1.11.0}
image: flwr/superlink:${FLWR_VERSION:-1.11.1}
command:
- --insecure

Expand All @@ -10,7 +10,7 @@ services:
build:
context: ${PROJECT_DIR:-.}
dockerfile_inline: |
FROM flwr/superexec:${FLWR_VERSION:-1.11.0}
FROM flwr/superexec:${FLWR_VERSION:-1.11.1}
WORKDIR /app
COPY --chown=app:app pyproject.toml .
Expand All @@ -31,7 +31,7 @@ services:

# create a two SuperNode service with different node configs
supernode-1:
image: flwr/supernode:${FLWR_VERSION:-1.11.0}
image: flwr/supernode:${FLWR_VERSION:-1.11.1}
command:
- --insecure
- --superlink
Expand All @@ -46,7 +46,7 @@ services:
- superlink

supernode-2:
image: flwr/supernode:${FLWR_VERSION:-1.11.0}
image: flwr/supernode:${FLWR_VERSION:-1.11.1}
command:
- --insecure
- --superlink
Expand All @@ -63,7 +63,7 @@ services:
# uncomment to add another SuperNode
#
# supernode-3:
# image: flwr/supernode:${FLWR_VERSION:-1.11.0}
# image: flwr/supernode:${FLWR_VERSION:-1.11.1}
# command:
# - --insecure
# - --superlink
Expand All @@ -81,7 +81,7 @@ services:
build:
context: ${PROJECT_DIR:-.}
dockerfile_inline: |
FROM flwr/clientapp:${FLWR_VERSION:-1.11.0}
FROM flwr/clientapp:${FLWR_VERSION:-1.11.1}
WORKDIR /app
COPY --chown=app:app pyproject.toml .
Expand All @@ -104,7 +104,7 @@ services:
build:
context: ${PROJECT_DIR:-.}
dockerfile_inline: |
FROM flwr/clientapp:${FLWR_VERSION:-1.11.0}
FROM flwr/clientapp:${FLWR_VERSION:-1.11.1}
WORKDIR /app
COPY --chown=app:app pyproject.toml .
Expand All @@ -129,7 +129,7 @@ services:
# build:
# context: ${PROJECT_DIR:-.}
# dockerfile_inline: |
# FROM flwr/clientapp:${FLWR_VERSION:-1.11.0}
# FROM flwr/clientapp:${FLWR_VERSION:-1.11.1}

# WORKDIR /app
# COPY --chown=app:app pyproject.toml .
Expand Down
12 changes: 6 additions & 6 deletions src/docker/distributed/client/compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
supernode-1:
image: flwr/supernode:${FLWR_VERSION:-1.11.0}
image: flwr/supernode:${FLWR_VERSION:-1.11.1}
command:
- --superlink
- ${SUPERLINK_IP:-127.0.0.1}:9092
Expand All @@ -17,7 +17,7 @@ services:
target: /app/certificates/ca.crt

supernode-2:
image: flwr/supernode:${FLWR_VERSION:-1.11.0}
image: flwr/supernode:${FLWR_VERSION:-1.11.1}
command:
- --superlink
- ${SUPERLINK_IP:-127.0.0.1}:9092
Expand All @@ -36,7 +36,7 @@ services:
# uncomment to add another SuperNode
#
# supernode-3:
# image: flwr/supernode:${FLWR_VERSION:-1.11.0}
# image: flwr/supernode:${FLWR_VERSION:-1.11.1}
# command:
# - --superlink
# - ${SUPERLINK_IP:-127.0.0.1}:9092
Expand All @@ -56,7 +56,7 @@ services:
build:
context: ${PROJECT_DIR:-.}
dockerfile_inline: |
FROM flwr/clientapp:${FLWR_VERSION:-1.11.0}
FROM flwr/clientapp:${FLWR_VERSION:-1.11.1}
WORKDIR /app
COPY --chown=app:app pyproject.toml .
Expand All @@ -79,7 +79,7 @@ services:
build:
context: ${PROJECT_DIR:-.}
dockerfile_inline: |
FROM flwr/clientapp:${FLWR_VERSION:-1.11.0}
FROM flwr/clientapp:${FLWR_VERSION:-1.11.1}
WORKDIR /app
COPY --chown=app:app pyproject.toml .
Expand All @@ -104,7 +104,7 @@ services:
# build:
# context: ${PROJECT_DIR:-.}
# dockerfile_inline: |
# FROM flwr/clientapp:${FLWR_VERSION:-1.11.0}
# FROM flwr/clientapp:${FLWR_VERSION:-1.11.1}

# WORKDIR /app
# COPY --chown=app:app pyproject.toml .
Expand Down
4 changes: 2 additions & 2 deletions src/docker/distributed/server/compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
superlink:
image: flwr/superlink:${FLWR_VERSION:-1.11.0}
image: flwr/superlink:${FLWR_VERSION:-1.11.1}
command:
- --ssl-ca-certfile=certificates/ca.crt
- --ssl-certfile=certificates/server.pem
Expand All @@ -22,7 +22,7 @@ services:
build:
context: ${PROJECT_DIR:-.}
dockerfile_inline: |
FROM flwr/superexec:${FLWR_VERSION:-1.11.0}
FROM flwr/superexec:${FLWR_VERSION:-1.11.1}
WORKDIR /app
COPY --chown=app:app pyproject.toml .
Expand Down

0 comments on commit c874698

Please sign in to comment.