-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (43 loc) · 1.64 KB
/
docker-compose.yml
File metadata and controls
49 lines (43 loc) · 1.64 KB
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
################################################################################
#
# 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 <contact@splashsync.com>
#
################################################################################
################################################################################
# Docker Compose File
################################################################################
services:
################################################################################
# PHP 8.2
php-8.2:
image: registry.gitlab.com/badpixxel-projects/php-sdk:php-8.2
container_name: sendinblue-bridge-8.2
volumes:
- ./:/var/www/html
- php82-vendor:/var/www/html/vendor
- php82-var:/var/www/html/var
################################################################################
# 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
- php81-vendor:/var/www/html/vendor
- php81-var:/var/www/html/var
volumes:
php82-vendor: ~
php82-var: ~
php81-vendor: ~
php81-var: ~