File tree Expand file tree Collapse file tree 3 files changed +23
-10
lines changed Expand file tree Collapse file tree 3 files changed +23
-10
lines changed Original file line number Diff line number Diff line change 1
- version: '2 '
1
+ version: '3 '
2
2
services:
3
- app:
4
- container_name: "phpmentors.route-based-session-configuration-bundle.app"
5
- image: "phpmentors/php-app:php55"
6
- volumes:
7
- - ".:/var/app"
8
- environment:
9
- TERM: "xterm"
10
- TZ: "Asia/Tokyo"
11
- LANG: "ja_JP.UTF-8"
3
+ app:
4
+ build: docker
5
+ network_mode: bridge
6
+ volumes:
7
+ - .:/var/app
8
+ working_dir: /var/app
9
+ environment:
10
+ TZ: "Asia/Tokyo"
11
+ LANG: "ja_JP.UTF-8"
12
+ # PHP_INI: "docker/php.ini"
Original file line number Diff line number Diff line change
1
+ FROM phpmentors/php-app:php72
2
+
3
+ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
4
+ RUN apt-get update -y
5
+ RUN apt-get upgrade -y
6
+
7
+ # Other tools
8
+ RUN apt-get install -y less unzip
Original file line number Diff line number Diff line change
1
+ ;memory_limit=256M
2
+ ;xdebug.remote_autostart=on
3
+ ;xdebug.remote_port=9000
4
+ ;xdebug.remote_host=172.17.0.1
You can’t perform that action at this time.
0 commit comments