This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The command '/bin/sh -c yum install -y --enablerepo=remi-php56 composer php php-fpm php-mcrypt php-cli php-common php-devel php-gd php-mbstring php-mysqlnd php-opcache php-pdo php-pear php-pecl-apcu php-pecl-zip php-pgsql php-process php-xml && yum clean all' returned a non-zero code: 1 | |
Unable to find image 'teratail/centos72:latest' locally | |
Pulling repository docker.io/teratail/centos72 | |
docker: Error: image teratail/centos72 not found. | |
See 'docker run --help'. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Teratail { | |
protected $value; | |
public function __construct($value) { | |
$this->value = $value; | |
} | |
public function getAnswer() { | |
return $this->value; |