Compare commits
2 commits
6249cbba14
...
de0438295e
Author | SHA1 | Date | |
---|---|---|---|
de0438295e | |||
c4c458a0e0 |
2 changed files with 24 additions and 0 deletions
|
@ -127,6 +127,14 @@ RUN curl -fsSL -o plugin.zip "https://github.com/JcDenis/DotclearWatch/releases/
|
||||||
&& chown -R www:www /var/lib/dotclear/plugins \
|
&& chown -R www:www /var/lib/dotclear/plugins \
|
||||||
&& rm plugin.zip
|
&& rm plugin.zip
|
||||||
|
|
||||||
|
# dcLog
|
||||||
|
ENV VER_DL=1.7.3
|
||||||
|
RUN curl -fsSL -o plugin.zip "https://github.com/JcDenis/dcLog/releases/download/v$VER_DL/plugin-dcLog.zip" \
|
||||||
|
&& mkdir -p /var/lib/dotclear/plugins/dcLog \
|
||||||
|
&& unzip -d /var/lib/dotclear/plugins plugin.zip \
|
||||||
|
&& chown -R www:www /var/lib/dotclear/plugins \
|
||||||
|
&& rm plugin.zip
|
||||||
|
|
||||||
# sysInfo
|
# sysInfo
|
||||||
ENV VER_SI=9.6
|
ENV VER_SI=9.6
|
||||||
RUN curl -fsSL -o plugin.zip "https://github.com/franck-paul/sysInfo/releases/download/$VER_SI/plugin-sysInfo-$VER_SI.zip" \
|
RUN curl -fsSL -o plugin.zip "https://github.com/franck-paul/sysInfo/releases/download/$VER_SI/plugin-sysInfo-$VER_SI.zip" \
|
||||||
|
|
16
exemple/compose/volume/sqlite/docker-compose.yml
Normal file
16
exemple/compose/volume/sqlite/docker-compose.yml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
services:
|
||||||
|
dotclear:
|
||||||
|
image: jcpd/docker-dotclear:latest
|
||||||
|
container_name: dotclear
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- dotclear:/var/www/dotclear
|
||||||
|
ports:
|
||||||
|
- 80:80
|
||||||
|
environment:
|
||||||
|
DC_DBDRIVER: sqlite
|
||||||
|
DC_DBNAME: \var\www\dotclear\sqlite.db
|
||||||
|
DC_ADMINMAILFROM: contact@exemple.com
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
dotclear:
|
Loading…
Reference in a new issue