Compare commits

..

No commits in common. '2dda9d4af13a9d4854a4954c9fd2779c218d26ab' and 'bc5cc3c3d42328310840f7883d3be6a17c226f01' have entirely different histories.

@ -21,19 +21,6 @@
<Content Include="..\.dockerignore">
<Link>.dockerignore</Link>
</Content>
<Content Remove="logs\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="logs\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="logs\**" />
</ItemGroup>
<ItemGroup>
<None Remove="logs\**" />
</ItemGroup>
</Project>

@ -44,7 +44,7 @@
"Server": "localhost",
"Port": 3306,
"Database": "test-db",
"User": "root",
"UserId": "root",
"Password": "pass@word",
"SnowFlake": {
"IsEnable": true,
@ -56,7 +56,7 @@
"WriteFile": true,
"SeqOptions": {
"IsEnable": true,
"Address": "http://localhost:5341",
"Address": "localhost",
"Secret": "test_secret"
}
},

@ -60,16 +60,14 @@
env_file:
- .env
image: datalust/seq:latest
restart: unless-stopped
environment:
- ACCEPT_EULA=Y
- SEQ_FIRSTRUN_ADMINPASSWORDHASH=${SEQ_ADMINPASSWORD}
volumes:
- ./docker/seq/data:/data
- ACCEPT_EULA = Y
- SEQ_FIRSTRUN_ADMINPASSWORDHASH = ${SEQ_ADMINPASSWORD}
ports:
- "5341:80"
networks:
- "tutorial_net"
seqcli:
env_file:
- .env
@ -81,7 +79,6 @@
restart: on-failure:5
networks:
- "tutorial_net"
networks:
tutorial_net:
driver: bridge
Loading…
Cancel
Save