Skip to content

Commit 4bb363a

Browse files
committed
Added ftp, Added customize.md
1 parent 8e7da12 commit 4bb363a

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/mblaschke/typo3-docker-boilerplate.svg)](http://isitmaintained.com/project/mblaschke/typo3-docker-boilerplate "Average time to resolve an issue")
66
[![Percentage of issues still open](http://isitmaintained.com/badge/open/mblaschke/typo3-docker-boilerplate.svg)](http://isitmaintained.com/project/mblaschke/typo3-docker-boilerplate "Percentage of issues still open")
77

8-
This is an easy customizable docker boilerplate for any PHP based projects like _TYPO3 CMS_, _TYPO3 NEOS_, _TYPO3 FLOW_, _Symfony Framework_ and many other.
8+
This is an easy customizable docker boilerplate for any PHP based projects like _TYPO3 CMS_, _Symfony Framework_, _FLOW/NEOS_ and many other frameworks or applications.
99

1010
Supports:
1111

@@ -17,6 +17,7 @@ Supports:
1717
- Redis (disabled)
1818
- Memcached (disabled)
1919
- Mailcatcher (if no mail sandbox is used, eg. [Vagrant Development VM](https://github.com/mblaschke/vagrant-development))
20+
- FTP server (vsftpd)
2021
- Support for `TYPO3_CONTEXT` and `FLOW_CONTEXT` for TYPO3, FLOW, NEOS.
2122
- maybe more later...
2223

@@ -34,6 +35,7 @@ Use can use my [Vagrant Development VM](https://github.com/mblaschke/vagrant-dev
3435

3536
- [Installation and requirements](/documentation/INSTALL.md)
3637
- [Updating docker boilerplate](/documentation/UPDATE.md)
38+
- [Customizing](/documentation/CUSTOMIZE.md)
3739
- [Docker Quickstart](/documentation/DOCKER-QUICKSTART.md)
3840
- [Run your project](/documentation/DOCKER-STARTUP.md)
3941
- [Container detail info](/documentation/DOCKER-INFO.md)

documentation/CUSTOMIZE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[<-- Back to main section](../README.md)
2+
3+
# Customizing
4+
5+
## Custom packages (`main` controller)
6+
7+
You can add custom shell commands in `docker/main/bin/customization.sh`
8+
9+
10+
## Custom php.ini directives
11+
12+
Modify the `docker/main/conf/php.ini`, it will be added on top of the default php.ini so
13+
you can overwrite any directives.
14+
15+
After modification rebuild your `main` container:
16+
17+
```bash
18+
docker-compose stop
19+
docker-compose build main
20+
docker-compose up -d
21+
```

0 commit comments

Comments
 (0)