Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dynamic compose for dokuwiki #5404

Merged
merged 11 commits into from
Dec 25, 2024
7 changes: 4 additions & 3 deletions apps/dokuwiki/config.json
Lancelot-Enguerrand marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -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 ",
Expand All @@ -16,5 +17,5 @@
"form_fields": [],
"supported_architectures": ["arm64", "amd64"],
"created_at": 1691943801422,
"updated_at": 1723566283000
"updated_at": 1735117834847
}
26 changes: 26 additions & 0 deletions apps/dokuwiki/docker-compose.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
]
}
4 changes: 1 addition & 3 deletions apps/dokuwiki/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
Loading