File: docker-compose.yml

package info (click to toggle)
dynare 7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 79,248 kB
  • sloc: cpp: 82,011; ansic: 28,583; objc: 12,573; yacc: 5,105; pascal: 2,374; lex: 1,502; python: 1,118; sh: 1,116; makefile: 605; lisp: 162; xml: 18
file content (18 lines) | stat: -rw-r--r-- 808 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
version: '3'

services:
    dynare:
        image: dynare/dynare:latest
        mac_address: A6-7E-1A-F4-9A-92 # randomly generated, used as host id in license file
        environment:
            PASSWORD: dynare
            #MLM_LICENSE_FILE: 27000@matlab-campus.uni-tuebingen.de # use network license
            MLM_LICENSE_FILE: /licenses/license.lic # use license file
        volumes:
            - $HOME/matlab-license.lic:/licenses/license.lic:ro # path to license file
            - $HOME/scratch:/home/matlab/scratch # path to some shared folder from host system
        ports:
            - "5901:5901" # VNC server
            - "6080:6080" # browser using NoVNC
        shm_size: 512M # recommended as docker's default ist only 64M
        command: -vnc # start Ubuntu desktop with VNC support