29 lines
657 B
YAML
29 lines
657 B
YAML
|
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
|