Compare commits

..

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

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

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

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