Some gaudi questions

Hello

I’m sure that there are Gaudi users on this forum so maybe somebody can help. My questions are:

1, How to disable the terminal colors in gaudi? When you run this tool on terminals with black background+white fonts you won’t see anything because it uses messed up colors. You can only use it on terminals with white background.

2, How can I degaudi a gaudi script? :wink:
So for example I have this script:

applications:
  apache:
    type: apache
    apt_get: [php5-cli,php5-intl,php5-mysql]
    links:
      - php_fpm
    custom:
      fastCgi: php_fpm
      documentRoot: /var/www/web
      modules: [rewrite]
    ports:
      '980': 80
    volumes:
      .: /var/www
  php_fpm:
    type: php-fpm
    apt_get: [php5-gd,php5-cli,php5-intl,locales]
    links:
      - mysql
    ports:
      '9000': 9000
    volumes:
      .: /var/www
  mysql:
    type: mysql
    ports:
      '33069': 3306
    volumes:
      .gaudi/mysql: /var/lib/mysql

And I want to make a dockerfile from it so I don’t have to use it all the time. Is this tool really does so many things in the background to build those docker containers?

Thanks