services:
  routstrd:
    build: .
    container_name: routstrd
    stdin_open: true
    tty: true
    volumes:
      - routstrd_data:/data
    ports:
      - "8008:8008"
    restart: unless-stopped
    command: /bin/bash

volumes:
  routstrd_data:
