-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
57 lines (49 loc) · 1.87 KB
/
docker-compose.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
50
51
52
53
54
55
56
57
################################################################################
#
# This file is part of SplashSync Project.
#
# Copyright (C) Splash Sync <www.splashsync.com>
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
#
# @author Bernard Paquier <[email protected]>
#
################################################################################
################################################################################
# Docker Compose File
################################################################################
version: "3.5"
services:
################################################################################
# PHP 8.1
php-8.1:
image: registry.gitlab.com/badpixxel-projects/php-sdk:php-8.1
container_name: sendinblue-bridge-8.1
volumes:
- ./:/var/www/html
- vendor-php81:/var/www/html/vendor
################################################################################
# PHP 8.0
php-8.0:
image: registry.gitlab.com/badpixxel-projects/php-sdk:php-8.0
container_name: sendinblue-bridge-8.0
volumes:
- ./:/var/www/html
- vendor-php80:/var/www/html/vendor
################################################################################
# PHP 7.4
php-7.4:
image: registry.gitlab.com/badpixxel-projects/php-sdk:php-7.4
container_name: sendinblue-bridge-7.4
volumes:
- ./:/var/www/html
- vendor-php74:/var/www/html/vendor
volumes:
vendor-php81: ~
vendor-php80: ~
vendor-php74: ~