I am trying to run docker on my mac. https://docs.aspnetzero.com/aspnet-core-angular/latest/Deployment-Angular-Docker I read this document.
WARN[0000] /Users/hsudas/Documents/GitHub/AnalisionFrontendV2/aspnet-core/build/outputs/Host/docker-compose.yml: the attribute version
is obsolete, it will be ignored, please remove it to avoid potential confusion
WARN[0000] The "APPDATA" variable is not set. Defaulting to a blank string.
WARN[0000] The "APPDATA" variable is not set. Defaulting to a blank string.
WARN[0000] /Users/hsudas/Documents/GitHub/AnalisionFrontendV2/aspnet-core/build/outputs/Host/docker-compose.override.yml: the attribute version
is obsolete, it will be ignored, please remove it to avoid potential confusion
[+] Running 1/1
! mycompanyname.abpzerotemplate.web.host Warning pull access denied for mycompanyname.abpzerotemplate.web.host, repository does not exist or may... 0.7s
[+] Building 1.0s (9/9) FINISHED docker:desktop-linux
=> [mycompanyname.abpzerotemplate.web.host internal] load build definition from Dockerfile 0.0s
=> => transferring dockerfile: 287B 0.0s
=> [mycompanyname.abpzerotemplate.web.host internal] load metadata for mcr.microsoft.com/dotnet/aspnet:7.0 0.1s
=> [mycompanyname.abpzerotemplate.web.host internal] load .dockerignore 0.0s
=> => transferring context: 2B 0.0s
=> [mycompanyname.abpzerotemplate.web.host 1/3] FROM mcr.microsoft.com/dotnet/aspnet:7.0@sha256:c7d9ee6cd01afe9aa80642e577c7cec9f5d87f88e5d70bd36fd61072079bc55b 0.0s
=> => resolve mcr.microsoft.com/dotnet/aspnet:7.0@sha256:c7d9ee6cd01afe9aa80642e577c7cec9f5d87f88e5d70bd36fd61072079bc55b 0.0s
=> [mycompanyname.abpzerotemplate.web.host internal] load build context 0.0s
=> => transferring context: 40.41kB 0.0s
=> CACHED [mycompanyname.abpzerotemplate.web.host 2/3] WORKDIR /app 0.0s
=> CACHED [mycompanyname.abpzerotemplate.web.host 3/3] COPY . . 0.0s
=> [mycompanyname.abpzerotemplate.web.host] exporting to image 0.7s
=> => exporting layers 0.0s
=> => exporting manifest sha256:789b3df905315820d5a6104b1c9f1fd1287fbd61bfd2fd9ee8eea58ab67b7608 0.0s
=> => exporting config sha256:1a7d4fda8ba8a8466a1f1685b29db7ea0070add00ceaa4987f1b3f4d469ed18e 0.0s
=> => exporting attestation manifest sha256:d2f1bf7e9c46db825d151223739a2eac411f96213279c246636c20eb4a7e1658 0.0s
=> => exporting manifest list sha256:4aeac00514bd37457af84689603ee278b3747099e9804f45eaea3bc860c2ce02 0.0s
=> => naming to docker.io/library/mycompanyname.abpzerotemplate.web.host:latest 0.0s
=> => unpacking to docker.io/library/mycompanyname.abpzerotemplate.web.host:latest 0.7s
=> [mycompanyname.abpzerotemplate.web.host] resolving provenance for metadata file 0.0s
[+] Running 2/2
✔ Network host_default Created 0.0s
✔ Container mycompanyname.abpzerotemplate.web.host_container Created 0.2s
Attaching to mycompanyname.abpzerotemplate.web.host_container
Gracefully stopping... (press Ctrl+C again to force)
Error response from daemon: Mounts denied:
The path /Microsoft/UserSecrets is not shared from the host and is not known to Docker.
You can configure shared paths from Docker -> Preferences... -> Resources -> File Sharing.
See https://docs.docker.com/desktop/settings/mac/#file-sharing for more info.
Hello guys,
Is there a way to hide some columns from Tenants? For example, as a Host I need to see the Tenant Information on a page which a Tanant capable to access to the same page as wll. So, the Tenant shouldn't be able to see that column or the information.
Thanks.
Hello guys,
I've downloaded the framework with VisualStudio Core MVC, and I've changed the database settings to be compatible for PostgreSQL. I'm trying to create new screens on my existing tables which I've already been using.
I've just realized that the framework requires two mandatory columns such as "Id" and "TenantId" on tables. The problem is that I've already been using the "id" column as primary key on my existing tables. PostgreSQL is case sensitive when creating columns, so the boilerplate does not recognize the column "id" in lowercase because it requires upper case for the first letter. On the other hand, I can not change the "id" column to uppercase since the table is being used by other services.
I need to change the framework's mandatory column "Id" to "id" to be able to handle that case. I think, that column comes from the abstract "Entity" class. Is there any way to change it?
Thanks in advance.
Hello all,
The migration tool creates all needed tables on PostgreSql database in "Public" schema which is default. I couldn't see any schema name property in config files. Can we change the name of the schema?
Thanks.