Skip to content

Commit

Permalink
Merge pull request #171 from ShokoAnime/fix-add-quotes-to-compose-paths
Browse files Browse the repository at this point in the history
fix: fix the double quotes
  • Loading branch information
revam authored Dec 20, 2024
2 parents 7b38ce7 + 64bda90 commit fd6db1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/.vitepress/components/DockerCompose.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ services:
ports:
- "${userInput.value.port}:8111"
volumes:
${userInput.value.volumes.filter((volume) => volume[0] && volume[1]).map((volume) => `- \""${volume.join("\":\"")}\""`).join("\n ")}`;
${userInput.value.volumes.filter((volume) => volume[0] && volume[1]).map((volume) => `- \""${volume.join(":")}\""`).join("\n ")}`;
});
return {
Expand Down

0 comments on commit fd6db1f

Please sign in to comment.