Skip to content

Commit

Permalink
Removed :ro :rw from volume targets
Browse files Browse the repository at this point in the history
  • Loading branch information
di5cord20 committed Aug 19, 2023
1 parent 246ff16 commit 4dca70a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions servapps/Handbrake/cosmos-compose.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,27 +60,27 @@
"volumes": [
{
"source": "{ServiceName}-config",
"target": "/config:rw",
"target": "/config",
"type": "volume"
}
{if Context.storagePath}
, {
"source": "{Context.storagePath}",
"target": "/storage:ro",
"target": "/storage",
"type": "bind"
}
{/if}
{if Context.outputPath}
, {
"source": "{Context.outputPath}",
"target": "/output:rw",
"target": "/output",
"type": "bind"
}
{/if}
{if Context.watchPath}
, {
"source": "{Context.watchPath}",
"target": "/watch:rw",
"target": "/watch",
"type": "bind"
}
{/if}
Expand Down

0 comments on commit 4dca70a

Please sign in to comment.