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

chore: update ACA-Py to 0.10.0-rc1 #55

Merged
merged 5 commits into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from 3 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
14 changes: 7 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# This docker-compose file is used for tests only

version: "3"
version: '3'
dbluhm marked this conversation as resolved.
Show resolved Hide resolved
services:
alice:
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.9.0
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.10.1
# image: acapy-test-image
# build:
# context: .
# dockerfile: Dockerfile.acapy
# args:
# acapy_url: https://github.com/Indicio-tech/aries-cloudagent-python@c1fed3c13d33e65979b08dd1eaf79dc84e3ce504
ports:
- "3001:3001"
- '3001:3001'
volumes:
- ./configs:/configs:ro,z
command: >
Expand Down Expand Up @@ -43,15 +43,15 @@ services:
condition: service_started

bob:
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.9.0
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.10.1
# image: acapy-test-image
# build:
# context: .
# dockerfile: Dockerfile.acapy
# args:
# acapy_url: https://github.com/Indicio-tech/aries-cloudagent-python@c1fed3c13d33e65979b08dd1eaf79dc84e3ce504
ports:
- "3002:3001"
- '3002:3001'
volumes:
- ./configs:/configs:ro,z
command: >
Expand Down Expand Up @@ -105,14 +105,14 @@ services:
build:
context: .
args:
install_flags: ""
install_flags: ''
environment:
- ALICE=http://alice:3001
- BOB=http://bob:3001
volumes:
- ./controller:/usr/src/app/controller:z
- ./tests:/usr/src/app/tests:z
entrypoint: "poetry run pytest"
entrypoint: 'poetry run pytest'
depends_on:
alice:
condition: service_healthy
Expand Down
4 changes: 2 additions & 2 deletions examples/json_ld/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3"
services:
alice:
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.9.0
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.10.1
ports:
- "3001:3001"
command: >
Expand All @@ -25,7 +25,7 @@ services:
retries: 5

bob:
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.9.0
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.10.1
ports:
- "3002:3001"
command: >
Expand Down
4 changes: 2 additions & 2 deletions examples/presenting_revoked_credential/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3"
services:
alice:
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.9.0
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.10.1
# image: acapy-test-image
# build:
# context: .
Expand Down Expand Up @@ -40,7 +40,7 @@ services:
condition: service_started

bob:
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.9.0
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.10.1
#image: bcgovimages/aries-cloudagent:py36-1.16-1_0.7.5
#image: bcgovimages/aries-cloudagent:py36-1.16-1_1.0.0-rc0
# image: acapy-test-image
Expand Down
4 changes: 2 additions & 2 deletions examples/simple/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3"
services:
alice:
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.9.0
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.10.1
ports:
- "3001:3001"
command: >
Expand Down Expand Up @@ -34,7 +34,7 @@ services:
condition: service_started

bob:
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.9.0
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.10.1
ports:
- "3002:3001"
command: >
Expand Down
12 changes: 6 additions & 6 deletions examples/tunnels/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3"
version: '3'
services:
alice:
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.9.0
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.10.1
#image: bcgovimages/aries-cloudagent:py36-1.16-1_0.7.5
#image: bcgovimages/aries-cloudagent:py36-1.16-1_1.0.0-rc0
# image: acapy-test-image
Expand All @@ -11,7 +11,7 @@ services:
# args:
# acapy_url: https://github.com/Indicio-tech/aries-cloudagent-python@c1fed3c13d33e65979b08dd1eaf79dc84e3ce504
ports:
- "3001:3001"
- '3001:3001'
volumes:
- ./tunnel_endpoint.sh:/tunnel_endpoint.sh:ro,z
environment:
Expand Down Expand Up @@ -50,7 +50,7 @@ services:
condition: service_started

bob:
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.9.0
image: ghcr.io/hyperledger/aries-cloudagent-python:py3.9-0.10.1
#image: bcgovimages/aries-cloudagent:py36-1.16-1_0.7.5
#image: bcgovimages/aries-cloudagent:py36-1.16-1_1.0.0-rc0
# image: acapy-test-image
Expand All @@ -60,7 +60,7 @@ services:
# args:
# acapy_url: https://github.com/Indicio-tech/aries-cloudagent-python@c1fed3c13d33e65979b08dd1eaf79dc84e3ce504
ports:
- "3002:3001"
- '3002:3001'
volumes:
- ./tunnel_endpoint.sh:/tunnel_endpoint.sh:ro,z
environment:
Expand Down Expand Up @@ -127,7 +127,7 @@ services:

tunnel-tails:
image: ngrok/ngrok
command: start --all
command: start --all
environment:
- NGROK_CONFIG=/etc/ngrok.yml
volumes:
Expand Down
Loading