diff --git a/apps/dokuwiki/config.json b/apps/dokuwiki/config.json index aaee9df3a7..5bb4ee75b8 100644 --- a/apps/dokuwiki/config.json +++ b/apps/dokuwiki/config.json @@ -4,9 +4,10 @@ "port": 8149, "available": true, "exposable": true, + "dynamic_config": true, "id": "dokuwiki", - "tipi_version": 2, - "version": "2022-07-31a-ls158", + "tipi_version": 3, + "version": "2024-02-06b-ls250", "categories": ["media"], "description": "DokuWiki is a simple to use and highly versatile Open Source wiki software that doesn't require a database. It is loved by users for its clean and readable syntax. The ease of maintenance, backup and integration makes it an administrator's favorite. Built in access controls and authentication connectors make DokuWiki especially useful in the enterprise context and the large number of plugins contributed by its vibrant community allow for a broad range of use cases beyond a traditional wiki.", "short_desc": "DokuWiki is a simple to use and highly versatile Open Source wiki software ", @@ -16,5 +17,5 @@ "form_fields": [], "supported_architectures": ["arm64", "amd64"], "created_at": 1691943801422, - "updated_at": 1723566283000 + "updated_at": 1735117834847 } diff --git a/apps/dokuwiki/docker-compose.json b/apps/dokuwiki/docker-compose.json new file mode 100644 index 0000000000..9eb4e4f33b --- /dev/null +++ b/apps/dokuwiki/docker-compose.json @@ -0,0 +1,26 @@ +{ + "services": [ + { + "name": "dokuwiki", + "image": "lscr.io/linuxserver/dokuwiki:2024-02-06b-ls250", + "isMain": true, + "internalPort": 80, + "volumes": [ + { + "hostPath": "${APP_DATA_DIR}/data/config", + "containerPath": "/config", + "readOnly": false + } + ], + "environment": { + "TZ": "${TZ}" + }, + "healthCheck": { + "test": "curl --fail http://localhost || exit 1", + "retries": 3, + "interval": "30s", + "timeout": "10s" + } + } + ] +} diff --git a/apps/dokuwiki/docker-compose.yml b/apps/dokuwiki/docker-compose.yml index 21ac91d629..50754abcfd 100644 --- a/apps/dokuwiki/docker-compose.yml +++ b/apps/dokuwiki/docker-compose.yml @@ -1,9 +1,7 @@ -version: "3" - services: dokuwiki: container_name: dokuwiki - image: lscr.io/linuxserver/dokuwiki:2022-07-31a-ls158 + image: lscr.io/linuxserver/dokuwiki:2024-02-06b-ls250 ports: - ${APP_PORT}:80 volumes: