Skip to content

Commit

Permalink
Add dynamic compose for gotify (#6053)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancelot-Enguerrand authored Dec 21, 2024
1 parent e7592cb commit e45c533
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/gotify/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"port": 8129,
"id": "gotify",
"exposable": true,
"tipi_version": 8,
"dynamic_config": true,
"tipi_version": 9,
"version": "2.6.1",
"categories": ["utilities"],
"description": "Simple server for sending and receiving notification messages.",
Expand Down Expand Up @@ -33,5 +34,5 @@
],
"supported_architectures": ["arm64", "amd64"],
"created_at": 1691943801422,
"updated_at": 1731777033000
"updated_at": 1734113844819
}
20 changes: 20 additions & 0 deletions apps/gotify/docker-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"services": [
{
"name": "gotify",
"image": "gotify/server:2.6.1",
"isMain": true,
"internalPort": 80,
"environment": {
"GOTIFY_DEFAULTUSER_NAME": "${GOTIFY_DEFAULTUSER_NAME}",
"GOTIFY_DEFAULTUSER_PASS": "${GOTIFY_DEFAULTUSER_PASS}"
},
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data",
"containerPath": "/app/data"
}
]
}
]
}

0 comments on commit e45c533

Please sign in to comment.