Skip to content
This repository was archived by the owner on Apr 24, 2019. It is now read-only.

Commit 899cb49

Browse files
committed
- docker-compose and minor adjustments
1 parent 4d1adf7 commit 899cb49

File tree

7 files changed

+6
-8
lines changed

7 files changed

+6
-8
lines changed

.docker/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/mysql/*
2+
!/mysql/.gitkeep
File renamed without changes.

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,13 @@
33
/nbproject
44
/.dev
55
/.docs
6-
/.docker/data
7-
/.docker/log
86
/storage/*
97
/vendor
108

119
# files
1210
.env
1311
*.cache
12+
*.log
1413

1514
# reverse
16-
!/storage/database.sql
17-
!/storage/endpoints.json
1815
!*.gitkeep

app/resources/view/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
?>
66
<html>
77
<head>
8-
<title><?php $this->out(config('app.name')); ?></title>
8+
<title><?php out(config('app.name')); ?></title>
99
</head>
1010
<body>
1111
<div style="text-align: center;">

app/routes/index.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<?php
22

3-
use Simples\Core\Route\Router;
43
use Simples\Core\Kernel\HttpHandler;
5-
use Simples\Core\Message\Lang;
4+
use Simples\Core\Route\Router;
65

76
/**
87
* @param Router $router

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
image: ambientum/mysql:5.7
88
container_name: mysql-simples
99
volumes:
10-
- ./storage/mysql:/var/lib/mysql
10+
- ./.docker/mysql:/var/lib/mysql
1111
ports:
1212
- "4000:3306"
1313
environment:

storage/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)