39 lines
785 B
YAML
39 lines
785 B
YAML
|
|
app:
|
||
|
|
id: electrs-ui
|
||
|
|
name: Electrs UI
|
||
|
|
version: 1.0.0
|
||
|
|
description: |
|
||
|
|
Archipelago-native HTTP frontend for electrs/electrumx status. Runs
|
||
|
|
nginx inside a container, serves static assets, and proxies
|
||
|
|
/electrs-status to the archipelago backend on 127.0.0.1:5678.
|
||
|
|
|
||
|
|
container:
|
||
|
|
build:
|
||
|
|
context: /opt/archipelago/docker/electrs-ui
|
||
|
|
dockerfile: Dockerfile
|
||
|
|
tag: localhost/electrs-ui:local
|
||
|
|
|
||
|
|
dependencies: []
|
||
|
|
|
||
|
|
resources:
|
||
|
|
memory_limit: 64Mi
|
||
|
|
|
||
|
|
security:
|
||
|
|
readonly_root: false
|
||
|
|
network_policy: host
|
||
|
|
|
||
|
|
# Host networking: nginx listens on 50002 directly on the host IP.
|
||
|
|
ports: []
|
||
|
|
|
||
|
|
volumes: []
|
||
|
|
|
||
|
|
environment: []
|
||
|
|
|
||
|
|
health_check:
|
||
|
|
type: http
|
||
|
|
endpoint: http://127.0.0.1:50002
|
||
|
|
path: /
|
||
|
|
interval: 30s
|
||
|
|
timeout: 5s
|
||
|
|
retries: 3
|