Skip to content

Commit

Permalink
user must be a string
Browse files Browse the repository at this point in the history
Signed-off-by: Simon L. <[email protected]>
  • Loading branch information
szaimen committed Nov 6, 2024
1 parent 8d81f56 commit b498f55
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
3 changes: 2 additions & 1 deletion php/containers-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@
"type": "integer"
},
"user": {
"type": "integer"
"type": "string",
"pattern": "^[0-9]{1,6}$"
},
"ports": {
"type": "array",
Expand Down
20 changes: 10 additions & 10 deletions php/containers.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
],
"display_name": "Apache",
"image": "nextcloud/aio-apache",
"user": 33,
"user": "33",
"init": true,
"ports": [
{
Expand Down Expand Up @@ -79,7 +79,7 @@
"image_tag": "%AIO_CHANNEL%",
"display_name": "Database",
"image": "nextcloud/aio-postgresql",
"user": 999,
"user": "999",
"init": true,
"expose": [
"5432"
Expand Down Expand Up @@ -253,7 +253,7 @@
"image_tag": "%AIO_CHANNEL%",
"display_name": "Notify Push",
"image": "nextcloud/aio-notify-push",
"user": 33,
"user": "33",
"init": true,
"expose": [
"7867"
Expand Down Expand Up @@ -295,7 +295,7 @@
"image_tag": "%AIO_CHANNEL%",
"display_name": "Redis",
"image": "nextcloud/aio-redis",
"user": 999,
"user": "999",
"init": true,
"expose": [
"6379"
Expand Down Expand Up @@ -332,7 +332,7 @@
"documentation": "https://github.com/nextcloud/all-in-one/discussions/1358",
"display_name": "Collabora",
"image": "nextcloud/aio-collabora",
"user": 100,
"user": "100",
"init": true,
"expose": [
"9980"
Expand Down Expand Up @@ -371,7 +371,7 @@
"documentation": "https://github.com/nextcloud/all-in-one/discussions/1358",
"display_name": "Talk",
"image": "nextcloud/aio-talk",
"user": 1000,
"user": "1000",
"init": true,
"ports": [
{
Expand Down Expand Up @@ -428,7 +428,7 @@
"image_tag": "%AIO_CHANNEL%",
"display_name": "Talk Recording",
"image": "nextcloud/aio-talk-recording",
"user": 122,
"user": "122",
"init": true,
"expose": [
"1234"
Expand Down Expand Up @@ -582,7 +582,7 @@
"image_tag": "%AIO_CHANNEL%",
"display_name": "ClamAV",
"image": "nextcloud/aio-clamav",
"user": 100,
"user": "100",
"init": false,
"expose": [
"3310"
Expand Down Expand Up @@ -663,7 +663,7 @@
"image_tag": "%AIO_CHANNEL%",
"display_name": "Imaginary",
"image": "nextcloud/aio-imaginary",
"user": 65534,
"user": "65534",
"init": true,
"expose": [
"9000"
Expand Down Expand Up @@ -769,7 +769,7 @@
"image_tag": "%AIO_CHANNEL%",
"display_name": "Whiteboard",
"image": "nextcloud/aio-whiteboard",
"user": 65534,
"user": "65534",
"init": true,
"expose": [
"3002"
Expand Down

0 comments on commit b498f55

Please sign in to comment.