mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 23:21:02 +00:00
Merge commit '392447f5c8f986ded2559a78457f4cd87942f393' into update-bridges-subtree-r/w
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
# bridges-ui
|
||||
|
||||
This is a Bridges UI docker configuration file. The source of the Bridges UI code
|
||||
can be found in [the repository](https://github.com/paritytech/parity-bridges-ui).
|
||||
The CI should create and publish a docker image that is used by this configuration
|
||||
file, so that the code is always using the latest version.
|
||||
The UI is configured to point to local Rialto and Millau nodes to retrieve the require
|
||||
data.
|
||||
|
||||
This image can be used together with `nginx-proxy` to expose the UI externally. See
|
||||
`VIRTUAL_*` and `LETSENCRYPT_*` environment variables.
|
||||
|
||||
After start the UI is available at `http://localhost:8080`
|
||||
|
||||
## How to?
|
||||
|
||||
In current directory:
|
||||
```bash
|
||||
docker-compose up -d
|
||||
```
|
||||
|
||||
Then start `rialto` & `millau` networks with the same command (one folder up) or
|
||||
run the full setup by using `../run.sh` script.
|
||||
@@ -0,0 +1,13 @@
|
||||
version: '3.5'
|
||||
services:
|
||||
bridges-ui:
|
||||
image: paritytech/parity-bridges-ui
|
||||
environment:
|
||||
VIRTUAL_HOST: ui.brucke.link
|
||||
VIRTUAL_PORT: 80
|
||||
LETSENCRYPT_HOST: ui.brucke.link
|
||||
LETSENCRYPT_EMAIL: admin@parity.io
|
||||
CHAIN_1_SUBSTRATE_PROVIDER: ws://localhost:9944
|
||||
CHAIN_2_SUBSTRATE_PROVIDER: ws://localhost:19944
|
||||
ports:
|
||||
- "8080:80"
|
||||
Reference in New Issue
Block a user