Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
docker-compose.yml 268 B
services:
  solver:
    build:
      context: .
      dockerfile: Dockerfile
    volumes:
      - .:/root/solver
    stdin_open: true  # Equivalent to -i for interactive mode
    tty: true         # Equivalent to -t for a terminal interface
    command: ["/bin/bash"]