diff --git a/README.md b/README.md
index 8b6afdcfe554fe06de685fea99251457d7a13d7b..19921fdfe7f3bbb762da354f50967734ed23f680 100644
--- a/README.md
+++ b/README.md
@@ -7,6 +7,10 @@
[](http://isitmaintained.com/project/mblaschke/php-docker-boilerplate "Average time to resolve an issue")
[](http://isitmaintained.com/project/mblaschke/php-docker-boilerplate "Percentage of issues still open")
+# How to Run
+
+```docker-compose up -d```
+
This is an easy customizable docker boilerplate for any PHP-based projects like _Symfony Framework_, _CakePHP_, _Yii_ and many other frameworks or applications.
Supports:
diff --git a/code/edit_post_action.php b/code/edit_post_action.php
index a360b46622af0a4939ac467fd01be2135da41e85..091af502d11632c342a4c878a3bcd4bc98923600 100644
--- a/code/edit_post_action.php
+++ b/code/edit_post_action.php
@@ -10,7 +10,6 @@ if (isset($_SESSION["isLogin"]) && (isset($_POST['csrf_token']) && $_POST['csrf_
echo $_FILES["image"];
if (isset($_FILES["image"])) {
- echo "iya";
$target_dir = "uploads/";
$target_file = $target_dir.basename($_FILES["image"]["name"]);
$uploadOk = 1;