xref: /plugin/bpmnio/test/docker-compose.yml (revision 94260a7f040ace3ab386a435f5314f2f3ebe529a)
1services:
2  dokuwiki:
3    image: linuxserver/dokuwiki:latest
4    container_name: dokuwiki-bpmnio-test
5    environment:
6      - PUID=1000
7      - PGID=1000
8      - TZ=Europe/Amsterdam
9    volumes:
10      - ../:/config/dokuwiki/lib/plugins/bpmnio:ro
11      - ./data:/config/dokuwiki/data/pages/test:rw
12      - ./media:/config/dokuwiki/data/media/test:rw
13    ports:
14      - "8080:80"
15    healthcheck:
16      test: ["CMD-SHELL", "wget -q --spider http://localhost/ || exit 1"]
17      interval: 10s
18      timeout: 5s
19      retries: 5
20      start_period: 30s
21