# Tutus Testnet - Single Node # Run: docker-compose up -d networks: tutus_network: name: tutus_network ipam: config: - subnet: 172.201.0.0/24 gateway: 172.201.0.254 volumes: tutus_chain: driver: local services: tutus: container_name: tutus_node build: context: . dockerfile: Dockerfile command: "node --config-file /config/protocol.tutus.testnet.yml --force-timestamp-logs" volumes: - tutus_chain:/chains ports: - "10333:10333" # P2P - "10332:10332" # RPC - "2112:2112" # Prometheus networks: tutus_network: ipv4_address: 172.201.0.10