Files
Hanzo Dev 66f33743d7 unify all sql images to :latest (PG18)
Single version policy: ghcr.io/hanzoai/sql:latest everywhere.
No version pinning, no backwards compat, always latest stable.
2026-03-01 21:09:09 -08:00

144 lines
4.5 KiB
YAML

version: '3.8'
# Local development compose file - runs entire stack locally
services:
redis:
image: redis:alpine
container_name: lux-redis
restart: unless-stopped
volumes:
- redis-data:/data
networks:
- explorer-network
postgres:
image: ghcr.io/hanzoai/sql:latest
container_name: lux-postgres
restart: unless-stopped
environment:
POSTGRES_DB: blockscout
POSTGRES_USER: blockscout
POSTGRES_PASSWORD: blockscout
volumes:
- postgres-data:/var/lib/postgresql/data
networks:
- explorer-network
backend:
image: ghcr.io/luxfi/explorer:latest
container_name: lux-backend
restart: unless-stopped
depends_on:
- redis
- postgres
environment:
DATABASE_URL: postgresql://blockscout:blockscout@postgres:5432/blockscout
REDIS_URL: redis://redis:6379
ETHEREUM_JSONRPC_HTTP_URL: http://127.0.0.1:9650/ext/bc/dnmzhuf6poM6PUNQCe7MWWfBdTJEnddhHRNXz2x7H6qSmyBEJ/rpc
ETHEREUM_JSONRPC_TRACE_URL: http://127.0.0.1:9650/ext/bc/dnmzhuf6poM6PUNQCe7MWWfBdTJEnddhHRNXz2x7H6qSmyBEJ/rpc
ETHEREUM_JSONRPC_WS_URL: ws://127.0.0.1:9650/ext/bc/dnmzhuf6poM6PUNQCe7MWWfBdTJEnddhHRNXz2x7H6qSmyBEJ/ws
CHAIN_ID: 96369
COIN: LUX
NETWORK: LUX Network
BLOCKSCOUT_HOST: localhost
BLOCKSCOUT_PROTOCOL: http
SECRET_KEY_BASE: VTIB3uHDNbvrY0+60ZWgUoUBKDn9ppLR8MI4CpRz4/qLyEFs54ktJfaNT6Z221No
ports:
- "4000:4000"
networks:
- explorer-network
stats:
image: ghcr.io/luxfi/explorer-stats:latest
container_name: lux-stats
restart: unless-stopped
depends_on:
- backend
- postgres
environment:
STATS__DB_URL: postgresql://blockscout:blockscout@postgres:5432/stats
STATS__BLOCKSCOUT_DB_URL: postgresql://blockscout:blockscout@postgres:5432/blockscout
STATS__CREATE_DATABASE: 'true'
STATS__RUN_MIGRATIONS: 'true'
STATS__SERVER__HTTP__ENABLED: 'true'
STATS__SERVER__HTTP__ADDR: 0.0.0.0:8050
STATS__BLOCKSCOUT_API_URL: http://backend:4000
STATS__FORCE_UPDATE_ON_START: 'true'
ports:
- "8050:8050"
networks:
- explorer-network
visualizer:
image: ghcr.io/luxfi/explorer-visualizer:latest
container_name: lux-visualizer
restart: unless-stopped
ports:
- "8051:8050"
networks:
- explorer-network
frontend:
build:
context: .
dockerfile: Dockerfile
container_name: lux-frontend
restart: unless-stopped
depends_on:
- backend
- stats
environment:
# Network configuration
NEXT_PUBLIC_NETWORK_NAME: LUX Network
NEXT_PUBLIC_NETWORK_SHORT_NAME: LUX
NEXT_PUBLIC_NETWORK_ID: 96369
NEXT_PUBLIC_NETWORK_CURRENCY_NAME: LUX
NEXT_PUBLIC_NETWORK_CURRENCY_SYMBOL: LUX
NEXT_PUBLIC_NETWORK_CURRENCY_DECIMALS: 18
# Branding
NEXT_PUBLIC_NETWORK_LOGO: https://docs.lux.network/img/lux-logo-white.png
NEXT_PUBLIC_NETWORK_LOGO_DARK: https://docs.lux.network/img/lux-logo-white.png
NEXT_PUBLIC_NETWORK_ICON: https://docs.lux.network/img/lux-logo-white.png
NEXT_PUBLIC_NETWORK_ICON_DARK: https://docs.lux.network/img/lux-logo-white.png
NEXT_PUBLIC_OG_IMAGE_URL: https://docs.lux.network/img/lux-logo-white.png
# Font configuration
NEXT_PUBLIC_FONT_FAMILY_HEADING: '{"name": "Inter", "url": "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"}'
NEXT_PUBLIC_FONT_FAMILY_BODY: '{"name": "Inter", "url": "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"}'
# Theme configuration
NEXT_PUBLIC_COLOR_THEME_DEFAULT: dark
NEXT_PUBLIC_HOMEPAGE_PLATE_BACKGROUND: black
NEXT_PUBLIC_HOMEPAGE_PLATE_TEXT_COLOR: white
# API configuration
NEXT_PUBLIC_API_HOST: localhost
NEXT_PUBLIC_API_PORT: 4000
NEXT_PUBLIC_API_PROTOCOL: http
NEXT_PUBLIC_API_BASE_PATH: /
NEXT_PUBLIC_API_WEBSOCKET_PROTOCOL: ws
# Stats & visualizer
NEXT_PUBLIC_STATS_API_HOST: http://localhost:8050
NEXT_PUBLIC_VISUALIZE_API_HOST: http://localhost:8051
# Network dropdown (all LUX ecosystem networks)
NEXT_PUBLIC_FEATURED_NETWORKS: /networks.json
# Other configurations
NEXT_PUBLIC_IS_ACCOUNT_SUPPORTED: 'true'
NEXT_PUBLIC_AUTH_URL: http://localhost:4000
NEXT_PUBLIC_LOGOUT_URL: https://luxwallet.xyz/api/auth/logout
ports:
- "3000:3000"
networks:
- explorer-network
volumes:
redis-data:
postgres-data:
networks:
explorer-network:
driver: bridge