services:
  node:
    image: "gluechain/stagingnet-glue-para-node:glue-v0.2.0"
    command: "--node-key <NODE KEY>
            --chain /node/glue-staging-raw.json \
            --ethapi=txpool \
            --trie-cache-size 2073741824 \
            --db-cache 30000 \
            --base-path /node/data \
            --bootnodes /ip4/185.142.213.47/tcp/31133/p2p/12D3KooWPkVMWjJheQJfo6JsvnY9ZSbz9u77DE6MtFyRFo9c5x4J \
            --port 30633 \
            --rpc-port 9963 \
            --rpc-external \
            --rpc-cors all \
            --database=rocksdb \
            --pruning=archive \
            --public-addr=/ip4/<YOUR SERVER IP>/tcp/<YOUR PORT SPECIFIED WITH --port ABOVE> \
            -- \
            --chain /node/glue-relaychain-staging-raw.json \
            --bootnodes /ip4/185.142.213.47/tcp/31144/p2p/12D3KooWGqrWbQ7VyJdh4oju5GK8qa5SKQBuwvjK4R6qzCp1V416 \ 
            --port 30643 \
            --rpc-port 9961"
    ports:
      - "30633:30633"
      - '9963:9963'
      - "30643:30643"
      - "9961:9961"
    volumes:
      - ./:/node
    restart: always
