Skip to content
/ gurobi Public
forked from SG2B/gurobi

This repository contains a Dockerfile to create a Docker image for solving linear programming optimization problems with Gurobi. The Docker image is available via Docker Hub.

Notifications You must be signed in to change notification settings

guglez/gurobi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

docker-gurobi

This repository contains a Dockerfile to create a Docker image for solving linear programming optimization problems with Gurobi. The Docker image is available via Docker Hub.

Usage

docker run -e 'GUROBI_LICENSE=your-license-key' -v /path/to/license:/home/gurobi -v /path/to/scripts:/usr/local/gurobi/scripts --network 'host' sg2b/gurobi

With docker-compose

version: '2'

services:
  gurobi:
    image: sg2b/gurobi
    container_name: gurobi652
    environment:
      - 'GUROBI_LICENSE=your-license-key'
    volumes:
      - /path/to/license:/home/gurobi
      - /path/to/scripts:/usr/local/gurobi/scripts
    network_mode: "host"

About

This repository contains a Dockerfile to create a Docker image for solving linear programming optimization problems with Gurobi. The Docker image is available via Docker Hub.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 90.6%
  • Shell 9.4%