mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
refactor: ♻ swap Dockerfile prefix -> suffix for better intellisense
https://stackoverflow.com/questions/27409761/docker-multiple-dockerfiles-in-project#comment103950213_32108873
This commit is contained in:
parent
d3b029be84
commit
84d194df20
8 changed files with 12 additions and 6 deletions
8
.gitattributes
vendored
8
.gitattributes
vendored
|
|
@ -336,4 +336,10 @@ Procfile text
|
|||
*.*rc text
|
||||
|
||||
# Ignore files (like .npmignore or .gitignore)
|
||||
*.*ignore text
|
||||
*.*ignore text
|
||||
|
||||
|
||||
|
||||
|
||||
# FilterLists custom
|
||||
*.Dockerfile text
|
||||
|
|
@ -4,7 +4,7 @@ services:
|
|||
directory-migrations-tests:
|
||||
build:
|
||||
context: ./services
|
||||
dockerfile: Directory/FilterLists.Directory.Api/Dockerfile.migrate
|
||||
dockerfile: Directory/FilterLists.Directory.Api/migrate.Dockerfile
|
||||
target: test-migrations
|
||||
volumes:
|
||||
- directory-migrations-tests-results:/FilterLists.Directory.Infrastructure.Migrations.Tests/TestResults
|
||||
|
|
|
|||
|
|
@ -13,14 +13,14 @@ services:
|
|||
archival-api:
|
||||
build:
|
||||
context: ./services
|
||||
dockerfile: Archival/FilterLists.Archival.Api/Dockerfile.dev
|
||||
dockerfile: Archival/FilterLists.Archival.Api/dev.Dockerfile
|
||||
environment:
|
||||
- ASPNETCORE_ENVIRONMENT=Development
|
||||
|
||||
directory-api:
|
||||
build:
|
||||
context: ./services
|
||||
dockerfile: Directory/FilterLists.Directory.Api/Dockerfile.dev
|
||||
dockerfile: Directory/FilterLists.Directory.Api/dev.Dockerfile
|
||||
environment:
|
||||
- ASPNETCORE_ENVIRONMENT=Development
|
||||
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
**/bin
|
||||
**/charts
|
||||
**/docker-compose*
|
||||
**/Dockerfile*
|
||||
**/*Dockerfile
|
||||
**/node_modules
|
||||
**/npm-debug.log
|
||||
**/obj
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
**/.gitignore
|
||||
**/azure-pipelines*.yaml
|
||||
**/node_modules
|
||||
**/Dockerfile*
|
||||
**/*Dockerfile
|
||||
**/.dockerignore
|
||||
**/.env
|
||||
|
|
|
|||
Loading…
Reference in a new issue