-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.example.yml
49 lines (48 loc) · 1.19 KB
/
docker-compose.example.yml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
###
# Copyright (c) 2017 Eclipse Foundation and others. #
# This program and the accompanying materials are made available
#
# under the terms of the Eclipse Public License 2.0 which accompanies
# this distribution, and is available at http://eclipse.org/legal/epl-2.0
###
version: '3'
services:
php5.3:
image: chrisguindon/webdev:php5.3
ports:
- 80
php5.5:
image: chrisguindon/webdev:php5.5
ports:
- 80
php5.6:
image: chrisguindon/webdev:php5.6
ports:
- 80
php7.0:
image: chrisguindon/webdev:php7.0
ports:
- 80
blackfire:
image: blackfire/blackfire
environment:
- BLACKFIRE_SERVER_ID
- BLACKFIRE_SERVER_TOKEN
# Using password example from https://hub.docker.com/_/mariadb/.
# You should consider using something different.
mariadb:
image: mariadb:latest
ports:
- 3306
environment:
MYSQL_ROOT_PASSWORD: my-secret-pw
MYSQL_PASSWORD: my-secret-pw
MYSQL_USER: admin
MYSQL_DATABASE: eclipse
planet-eclipse:
image: chrisguindon/webdev:planeteclipse
ports:
- 80
environment:
PLANETECLIPSE_HTTP_SERVER: "true"
PLANETECLIPSE_UPDATE: "true"