This repository has been archived by the owner on May 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 336
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #458 from DivanteLtd/release/v1.12.0-rc.1
Release/v1.12.0
- Loading branch information
Showing
83 changed files
with
15,155 additions
and
10,496 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,3 +26,4 @@ services: | |
- /var/www/dist | ||
ports: | ||
- '8080:8080' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
version: '3.0' | ||
services: | ||
varnish: | ||
build: | ||
context: . | ||
dockerfile: varnish/Dockerfile | ||
volumes: | ||
- ./docker/varnish/config.vcl:/usr/local/etc/varnish/default.vcl | ||
ports: | ||
- '1234:80' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
FROM cooptilleuls/varnish:6.0-stretch | ||
|
||
# install varnish-modules | ||
RUN apt-get update -y && \ | ||
apt-get install -y build-essential automake libtool curl git python-docutils && \ | ||
curl -s https://packagecloud.io/install/repositories/varnishcache/varnish60/script.deb.sh | bash; | ||
|
||
RUN apt-get install -y pkg-config libvarnishapi1 libvarnishapi-dev autotools-dev; | ||
|
||
RUN git clone https://github.com/varnish/varnish-modules.git /tmp/vm; | ||
RUN cd /tmp/vm; \ | ||
git checkout 6.0; \ | ||
./bootstrap && \ | ||
./configure; | ||
|
||
RUN cd /tmp/vm && \ | ||
make && \ | ||
make check && \ | ||
make install; |
Oops, something went wrong.