svg
This commit is contained in:
29
misc/images/dokuwiki/docker-compose.yml
Executable file
29
misc/images/dokuwiki/docker-compose.yml
Executable file
@ -0,0 +1,29 @@
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
nineapache:
|
||||
image: reg.cadoles.com/envole/nineapache:8.1
|
||||
container_name: dokuwiki-nineapache
|
||||
restart: always
|
||||
healthcheck:
|
||||
test: curl --fail http://localhost || exit 1
|
||||
interval: 1s
|
||||
timeout: 60s
|
||||
networks:
|
||||
- dokuwiki-network
|
||||
ports:
|
||||
- "80:80"
|
||||
volumes:
|
||||
- ./containers/nineapache/apache.conf:/etc/apache2/conf.d/zapp.conf
|
||||
|
||||
dokuwiki:
|
||||
build:
|
||||
context: ./containers/dokuwiki
|
||||
image: reg.cadoles.com/envole/dokuwiki
|
||||
container_name: dokuwiki-app
|
||||
networks:
|
||||
- dokuwiki-network
|
||||
|
||||
networks:
|
||||
dokuwiki-network:
|
||||
name: dokuwiki-network
|
Reference in New Issue
Block a user