diff --git a/examples/with-firebase-hosting-and-docker/docker-compose.deploy.yml b/examples/with-firebase-hosting-and-docker/docker-compose.deploy.yml index 2f8f64a7..9f757434 100644 --- a/examples/with-firebase-hosting-and-docker/docker-compose.deploy.yml +++ b/examples/with-firebase-hosting-and-docker/docker-compose.deploy.yml @@ -1,6 +1,7 @@ version: '3.5' services: server: + user: 1000:1000 volumes: - .:/app command: sh -c "yarn --production=false && yarn clean && yarn deploy --project "$FB_PROJECTID"" diff --git a/examples/with-firebase-hosting-and-docker/docker-compose.dev.yml b/examples/with-firebase-hosting-and-docker/docker-compose.dev.yml index 05fd8db7..6afaa367 100644 --- a/examples/with-firebase-hosting-and-docker/docker-compose.dev.yml +++ b/examples/with-firebase-hosting-and-docker/docker-compose.dev.yml @@ -1,6 +1,7 @@ version: '3.5' services: server: + user: 1000:1000 volumes: - .:/app command: sh -c "yarn --production=false && yarn dev" diff --git a/examples/with-firebase-hosting-and-docker/docker-compose.serve.yml b/examples/with-firebase-hosting-and-docker/docker-compose.serve.yml index 1ac4e755..b723d1de 100644 --- a/examples/with-firebase-hosting-and-docker/docker-compose.serve.yml +++ b/examples/with-firebase-hosting-and-docker/docker-compose.serve.yml @@ -1,6 +1,7 @@ version: '3.5' services: server: + user: 1000:1000 volumes: - .:/app command: sh -c 'yarn --production=false && yarn clean && yarn build-app && yarn serve --project "$FB_PROJECTID"'