File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ An older version of ***PHP*** that some older codebase sites would require as an
6
6
7
7
Other Packages Included:
8
8
9
- - Node
9
+ - Node v8.x
10
10
- Composer v1.7.1
11
11
- libxml2-dev
12
12
- libzip-dev
Original file line number Diff line number Diff line change 1
1
version : ' 3.7'
2
2
3
+ # Services/Containers to orchestrate in this composition
3
4
services :
5
+ # Basic PHP 5.6 & Apache2 Image Container
4
6
php-5-6-web-server :
5
7
container_name : php-5-6-web-server
6
8
tty : true
@@ -31,6 +33,8 @@ services:
31
33
networks :
32
34
- webapp_network
33
35
36
+ # Custom network for composed containers to communicate on
34
37
networks :
35
38
webapp_network :
39
+ driver : bridge
36
40
Original file line number Diff line number Diff line change @@ -8,10 +8,9 @@ LABEL evilwizardcreations.image.authors="evil.wizard95@googlemail.com" \
8
8
COPY --from=composer:1.7.1 /usr/bin/composer /usr/bin/composer
9
9
10
10
# Download the nodejs setup & set that it's a docker env.
11
- # npm -v 6.4.1
12
- # yarn -v 1.10.1
13
11
ENV NODE_ENV docker
14
- RUN curl --silent --location https://deb.nodesource.com/setup_14.x | bash
12
+ # Node -v v8.12.0
13
+ RUN curl --silent --location https://deb.nodesource.com/setup_8.x | bash
15
14
16
15
# Enable some apache modules.
17
16
RUN a2enmod rewrite; \
You can’t perform that action at this time.
0 commit comments