Skip to content

Commit

Permalink
add dockerfile & docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
tomyork817 committed Mar 31, 2024
1 parent 011d815 commit 06089f2
Show file tree
Hide file tree
Showing 11 changed files with 98 additions and 407 deletions.
25 changes: 25 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
**/.dockerignore
**/.env
**/.git
**/.gitignore
**/.project
**/.settings
**/.toolstarget
**/.vs
**/.vscode
**/.idea
**/*.*proj.user
**/*.dbmdl
**/*.jfm
**/azds.yaml
**/bin
**/charts
**/docker-compose*
**/Dockerfile*
**/node_modules
**/npm-debug.log
**/obj
**/secrets.dev.yaml
**/values.dev.yaml
LICENSE
README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public static IServiceCollection AddDataAccess(
{
collection.AddDbContext<DatabaseContext>(configuration);
collection.AddScoped<IDatabaseContext>(x => x.GetRequiredService<DatabaseContext>());


return collection;
}
Expand Down

This file was deleted.

112 changes: 0 additions & 112 deletions Infrastructure.DataAccess/Migrations/20240329121538_Initial.cs

This file was deleted.

Loading

0 comments on commit 06089f2

Please sign in to comment.