https://github.com/bobobass84/ef.core.database.adapter
This is just an attempt to have a clean base architecture for database access.
https://github.com/bobobass84/ef.core.database.adapter
dotnet-core dotnetcore ef-core efcore entity-framework-core mstestv2 mstestv2-fluent-assertion
Last synced: 3 months ago
JSON representation
This is just an attempt to have a clean base architecture for database access.
- Host: GitHub
- URL: https://github.com/bobobass84/ef.core.database.adapter
- Owner: BoBoBaSs84
- License: mit
- Created: 2022-11-29T05:57:58.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2026-03-26T18:19:22.000Z (3 months ago)
- Last Synced: 2026-03-27T07:43:04.120Z (3 months ago)
- Topics: dotnet-core, dotnetcore, ef-core, efcore, entity-framework-core, mstestv2, mstestv2-fluent-assertion
- Language: C#
- Homepage:
- Size: 7.5 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.Docker.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
### Building and running your application
When you're ready, start your application by running:
`docker compose up --build`.
Your application will be available at http://localhost:8080.
### Deploying your application to the cloud
First, build your image, e.g.: `docker build -t myapp .`.
If your cloud uses a different CPU architecture than your development
machine (e.g., you are on a Mac M1 and your cloud provider is amd64),
you'll want to build the image for that platform, e.g.:
`docker build --platform=linux/amd64 -t myapp .`.
Then, push it to your registry, e.g. `docker push myregistry.com/myapp`.
Consult Docker's [getting started](https://docs.docker.com/go/get-started-sharing/)
docs for more detail on building and pushing.
### References
* [Docker's .NET guide](https://docs.docker.com/language/dotnet/)
* The [dotnet-docker](https://github.com/dotnet/dotnet-docker/tree/main/samples)
repository has many relevant samples and docs.