forked from egeloen/IvoryGoogleMapBundle
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (26 loc) · 756 Bytes
/
docker-compose.yml
File metadata and controls
29 lines (26 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
version: '3.5'
services:
php:
build:
context: docker/php
env_file:
- .env
environment:
XDEBUG_CONFIG: remote_host=${XDEBUG_HOST} remote_port=${XDEBUG_PORT} idekey=${XDEBUG_IDEKEY}
PHP_IDE_CONFIG: serverName=${IDE_SERVER_NAME}
volumes:
- ~/.composer:/var/www/.composer
- .:/var/www/html
- shared-tmp:/tmp/ivory-google-map
depends_on:
- selenium-chrome
links:
- selenium-chrome:selenium-chrome
selenium-chrome:
image: selenium/standalone-chrome-debug
# ports:
# - "5900:5900"
volumes:
- shared-tmp:/tmp/ivory-google-map
volumes:
shared-tmp: