Lux Docs
Exchange

Deployment

Deploy the exchange

Docker

docker build -t exchange .
docker run -p 3000:3000 exchange

Kubernetes

apiVersion: apps/v1
kind: Deployment
metadata:
  name: exchange
  namespace: lux-exchange
spec:
  template:
    spec:
      containers:
        - name: exchange
          image: ghcr.io/luxfi/exchange:latest
          ports:
            - containerPort: 3000

On this page