https://gitlab.com/tezos/tezos
Raw File
Tip revision: 0f2ed93b4e11f369e4550045b0d6fec9cb966c20 authored by Arvid Jakobsson on 12 March 2024, 13:18:28 UTC
TMP try split
Tip revision: 0f2ed93
alpha.yml
version: "3"
services:
  octez-node:
    container_name: octez-node-alpha
    image: tezos/tezos:latest
    hostname: octez-node
    command: octez-node
    ports:
      - 9732:9732
      - 8732:8732
    environment:
      NODE_HOST: octez-node
      PROTOCOL: alpha
    volumes:
      - node_data:/var/run/tezos/node
      - client_data:/var/run/tezos/client
    restart: on-failure

  octez-baker:
    container_name: octez-baker-alpha
    image: tezos/tezos:latest
    hostname: octez-baker
    command: octez-baker --liquidity-baking-toggle-vote $LIQUIDITY_BAKING_VOTE
    environment:
      NODE_HOST: octez-node
      PROTOCOL: alpha
    volumes:
      - client_data:/var/run/tezos/client
      - node_data:/var/run/tezos/node
    restart: on-failure


  octez-accuser:
    container_name: octez-accuser-alpha
    image: tezos/tezos:latest
    hostname: octez-accuser
    command: octez-accuser
    environment:
      NODE_HOST: octez-node
      PROTOCOL: alpha
    volumes:
      - client_data:/var/run/tezos/client
      - node_data:/var/run/tezos/node
    restart: on-failure

volumes:
  node_data: {}
  client_data: {}
back to top