Skip to content

Commit

Permalink
[release] v0.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
azukaar committed Sep 23, 2024
1 parent 616c767 commit 89d2b60
Show file tree
Hide file tree
Showing 9 changed files with 38 additions and 38 deletions.
6 changes: 3 additions & 3 deletions servapps/Dozzle/cosmos-compose.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@
"TASKS=0",
"VOLUMES=0"
],
"depends_on": [
"{ServiceName}"
],
"depends_on": {
"{ServiceName}" : {}
},
"links": [
"{ServiceName}"
]
Expand Down
6 changes: 3 additions & 3 deletions servapps/Flarum/cosmos-compose.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@
"cosmos-stack": "{ServiceName}",
"cosmos-stack-main": "{ServiceName}"
},
"depends_on": [
"{ServiceName}-mariadb"
]
"depends_on": {
"{ServiceName}-mariadb" : {}
}
},
"{ServiceName}-mariadb": {
"hostname": "{ServiceName}-mariadb",
Expand Down
14 changes: 7 additions & 7 deletions servapps/Immich/cosmos-compose.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@
"DB_DATABASE_NAME=immich",
"REDIS_HOSTNAME={ServiceName}-redis"
],
"depends_on": [
"{ServiceName}-redis",
"{ServiceName}-database"
],
"depends_on": {
"{ServiceName}-redis": {},
"{ServiceName}-database": {}
},
"routes": [
{
"name": "{ServiceName}",
Expand Down Expand Up @@ -204,9 +204,9 @@
"PUID=1000",
"PGID=1000"
],
"depends_on": [
"{ServiceName}-database"
]
"depends_on": {
"{ServiceName}-database": {}
}
}
{/if}
},
Expand Down
6 changes: 3 additions & 3 deletions servapps/Jellystat/cosmos-compose.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@
"networks": {
"{ServiceName}-databases": {}
},
"depends_on": [
"{ServiceName}-db"
],
"depends_on": {
"{ServiceName}-db": {}
},
"volumes": [
{
"source": "{ServiceName}-backup-data",
Expand Down
6 changes: 3 additions & 3 deletions servapps/Kitchenowl/cosmos-compose.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"image": "tombursch/kitchenowl-web",
"container_name": "{ServiceName}",
"restart": "unless-stopped",
"depends_on": [
"{ServiceName}-backend"
],
"depends_on": {
"{ServiceName}-backend": {}
},
"labels": {
"cosmos-force-network-secured": "true",
"cosmos-auto-update": "true",
Expand Down
14 changes: 7 additions & 7 deletions servapps/Lemmy/cosmos-compose.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@
"type": "volume"
}
],
"depends_on": [
"{ServiceName}-postgres",
"{ServiceName}-pictrs"
],
"depends_on": {
"{ServiceName}-postgres": {},
"{ServiceName}-pictrs": {}
},
"routes": [
{
"name": "{ServiceName}-api-1",
Expand Down Expand Up @@ -180,9 +180,9 @@
"type": "volume"
}
],
"depends_on": [
"{ServiceName}"
],
"depends_on": {
"{ServiceName}": {}
},
"restart": "always"
},
"{ServiceName}-pictrs": {
Expand Down
12 changes: 6 additions & 6 deletions servapps/Paperless-ngx/cosmos-compose.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,12 @@
"{ServiceName}": {
"image": "ghcr.io/paperless-ngx/paperless-ngx:latest",
"restart": "unless-stopped",
"depends_on": [
"{ServiceName}-db",
"{ServiceName}-broker",
"{ServiceName}-gotenberg",
"{ServiceName}-tika"
],
"depends_on": {
"{ServiceName}-db": {},
"{ServiceName}-broker": {},
"{ServiceName}-gotenberg": {},
"{ServiceName}-tika": {}
},
"volumes": [
{
"source": "{ServiceName}-data",
Expand Down
6 changes: 3 additions & 3 deletions servapps/Piped/cosmos-compose.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@
"POSTGRES_PASSWORD={Passwords.0}",
"DATABASE_HOST={ServiceName}-postgres"
],
"depends_on": [
"{ServiceName}-postgres"
],
"depends_on": {
"{ServiceName}-postgres": {}
},
"volumes": [
{
"source": "{ServiceName}-backend",
Expand Down
6 changes: 3 additions & 3 deletions servapps/phpbb/cosmos-compose.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@
}
}
],
"depends_on": [
"{ServiceName}-mariadb"
]
"depends_on": {
"{ServiceName}-mariadb": {}
}
}
},
"networks": {
Expand Down

0 comments on commit 89d2b60

Please sign in to comment.