mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
fix(archival): 🐛 pass in git config options
This commit is contained in:
parent
82d46c4518
commit
a80da4772b
2 changed files with 6 additions and 1 deletions
|
|
@ -22,9 +22,13 @@ services:
|
|||
- directory-api
|
||||
volumes:
|
||||
- archival-application-insights:/app/application-insights
|
||||
- archival-archives:/app/${ARCHIVAL_GIT_REPOSITORY_DIRECTORY}
|
||||
environment:
|
||||
ApplicationInsights__InstrumentationKey: ${ARCHIVAL_APPLICATION_INSIGHTS_INSTRUMENTATION_KEY}
|
||||
ConnectionStrings__SchedulingConnection: ${ARCHIVAL_REDIS_CONNECTION_STRING}
|
||||
Git__RepositoryDirectory: ${ARCHIVAL_GIT_REPOSITORY_DIRECTORY}
|
||||
Git__UserName: ${ARCHIVAL_GIT_USER_NAME}
|
||||
Git__UserEmail: ${ARCHIVAL_GIT_USER_EMAIL}
|
||||
|
||||
archival-scheduling-db:
|
||||
image: redis:alpine
|
||||
|
|
@ -69,5 +73,6 @@ networks:
|
|||
volumes:
|
||||
archival-application-insights:
|
||||
archival-scheduling-db:
|
||||
archival-archives:
|
||||
directory-application-insights:
|
||||
directory-db:
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
{
|
||||
internal class GitOptions
|
||||
{
|
||||
public const string Key = nameof(Key);
|
||||
public const string Key = "Git";
|
||||
|
||||
public string RepositoryDirectory { get; set; } = null!;
|
||||
public string UserName { get; set; } = null!;
|
||||
|
|
|
|||
Loading…
Reference in a new issue