From 9abdb04fbdccff6ec6997a9e514fc50df23ca952 Mon Sep 17 00:00:00 2001 From: Simon Bihel Date: Wed, 28 Sep 2022 11:00:50 +0100 Subject: [PATCH] Clarify Docker deployment --- README.md | 5 ++++- docker-compose.yml => test/docker-compose.yml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) rename docker-compose.yml => test/docker-compose.yml (98%) diff --git a/README.md b/README.md index fa5dfec..efc0079 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,9 @@ siweoidc.example.com/.w* ### Stand-Alone Binary +> Note that currently the published Docker image doesn't support all wallets due +> to the need of bundling secrets for web3modal at compile-time. + #### Dependencies Redis, or a Redis compatible database (e.g. MemoryDB in AWS), is required. @@ -111,7 +114,7 @@ A Docker Compose is available to test the IdP locally with Keycloak. 1. You will first need to run: ```bash -docker-compose up -d +docker-compose -f test/docker-compose.yml up -d ``` 2. And then edit your `/etc/hosts` to have `siwe-oidc` point to `127.0.0.1`. diff --git a/docker-compose.yml b/test/docker-compose.yml similarity index 98% rename from docker-compose.yml rename to test/docker-compose.yml index a1663ca..1e3dcff 100644 --- a/docker-compose.yml +++ b/test/docker-compose.yml @@ -1,7 +1,7 @@ version: "3" services: siwe-oidc: - build: . + build: .. image: ghcr.io/spruceid/siwe_oidc:latest ports: - "8000:8000"