Skip to content

Commit

Permalink
fix failing schema validation
Browse files Browse the repository at this point in the history
Signed-off-by: Simon L <[email protected]>
  • Loading branch information
szaimen committed Sep 29, 2023
1 parent 949fd79 commit b651c01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions php/containers-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
},
"display_name": {
"type": "string",
"pattern": "^[A-Za-z 0-9]+$"
"pattern": "^[A-Za-z 0-9-]+$"
},
"environment": {
"type": "array",
Expand Down Expand Up @@ -74,7 +74,7 @@
},
"port_number": {
"type": "string",
"pattern": "^(%[A-Z_]+%)$"
"pattern": "^(%[A-Z_]+%|[0-9]{1,5})$"
},
"protocol": {
"type": "string",
Expand Down

0 comments on commit b651c01

Please sign in to comment.