forked from catalin/fukuops
Compare commits
5 commits
8bcedf8c55
...
0c498a6d85
| Author | SHA1 | Date | |
|---|---|---|---|
| 0c498a6d85 | |||
| a81ebfe573 | |||
| 1837c1ca14 | |||
| 5fbf0a09a2 | |||
| dddd1b40ec |
4 changed files with 43 additions and 4 deletions
13
docker/dokuwiki/Containerfile
Normal file
13
docker/dokuwiki/Containerfile
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
FROM docker.io/library/debian:latest
|
||||||
|
ARG WIKI_NAME="dokuwiki"
|
||||||
|
ARG WEB_DIR="/var/www"
|
||||||
|
ARG APACHE_CONFIG_DIR="/etc/apache2"
|
||||||
|
EXPOSE 443/tcp
|
||||||
|
|
||||||
|
USER root
|
||||||
|
|
||||||
|
RUN apt-get update && apt-get full-upgrade -y && apt-get install vim apache2 libapache2-mod-php w3m php-cli php-xml -y
|
||||||
|
RUN rm ${APACHE_CONFIG_DIR}/sites-enabled/000-default.conf && a2enmod ssl
|
||||||
|
RUN ["/bin/bash", "-c", "echo 'date.timezone = \"Europe/Madrid\"' >> /etc/php/*/apache2/php.ini"]
|
||||||
|
|
||||||
|
STOPSIGNAL SIGWINCH
|
||||||
26
docker/dokuwiki/docker-compose.yml
Normal file
26
docker/dokuwiki/docker-compose.yml
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
services:
|
||||||
|
wiki:
|
||||||
|
name: hane-dokuwiki
|
||||||
|
image: hane-dokuwiki-image
|
||||||
|
build: ./
|
||||||
|
volumes:
|
||||||
|
- type: volume
|
||||||
|
source: dokuwiki
|
||||||
|
target: /var/www/dokuwiki
|
||||||
|
- type: bind
|
||||||
|
source: /mnt/nas1/shared/dokuwiki/apache2.conf
|
||||||
|
target: /etc/apache2/apache2.conf
|
||||||
|
- type: bind
|
||||||
|
source: /mnt/nas1/shared/dokuwiki/001-wiki.conf
|
||||||
|
target: /etc/apache2/sites-enabled/001-wiki.conf
|
||||||
|
- /mnt/nas1/shared/dokuwiki/init.sh:/init.sh
|
||||||
|
ports:
|
||||||
|
- "44344:443/tcp"
|
||||||
|
entrypoint: /init.sh
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
dokuwiki:
|
||||||
|
external: true
|
||||||
|
labels:
|
||||||
|
- "dev.roboces.wiki=Dokuwiki volume"
|
||||||
|
name: dokuwiki
|
||||||
|
|
@ -23,7 +23,7 @@ services:
|
||||||
max-size: "500m"
|
max-size: "500m"
|
||||||
max-file: "2"
|
max-file: "2"
|
||||||
signal:
|
signal:
|
||||||
image: netbirdio/signal:0.59.2
|
image: netbirdio/signal:0.59.8
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- netbird-signal:/var/lib/netbird
|
- netbird-signal:/var/lib/netbird
|
||||||
|
|
@ -35,7 +35,7 @@ services:
|
||||||
max-size: "500m"
|
max-size: "500m"
|
||||||
max-file: "2"
|
max-file: "2"
|
||||||
relay:
|
relay:
|
||||||
image: netbirdio/relay:0.59.2
|
image: netbirdio/relay:0.59.8
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
NB_LOG_LEVEL: ${NB_LOG_LEVEL:-info}
|
NB_LOG_LEVEL: ${NB_LOG_LEVEL:-info}
|
||||||
|
|
@ -50,7 +50,7 @@ services:
|
||||||
max-size: "500m"
|
max-size: "500m"
|
||||||
max-file: "2"
|
max-file: "2"
|
||||||
management:
|
management:
|
||||||
image: netbirdio/management:0.59.2
|
image: netbirdio/management:0.59.8
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
- dashboard
|
- dashboard
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ spec:
|
||||||
sources:
|
sources:
|
||||||
- chart: renovate
|
- chart: renovate
|
||||||
repoURL: https://docs.renovatebot.com/helm-charts
|
repoURL: https://docs.renovatebot.com/helm-charts
|
||||||
targetRevision: 43.54.*
|
targetRevision: 44.15.*
|
||||||
helm:
|
helm:
|
||||||
valuesObject:
|
valuesObject:
|
||||||
renovate:
|
renovate:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue