Skip to content

Commit 1005a52

Browse files
authored
Merge pull request #6 from senbar/development
Development
2 parents 80cbd2c + 4433472 commit 1005a52

6 files changed

Lines changed: 9 additions & 27 deletions

File tree

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,4 @@ paket-files/
254254
.idea/
255255
*.sln.iml
256256

257-
258-
appsettings.*.json
259-
appsettings.json
260-
azurite.env
257+
appsettings.json

_appsettings.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"DbConnectionString": "User ID=sa;Password=JHVHjhvh!;Host=localhost;Port=5432;Database=SigmaChatDb;Pooling=true;Minimum Pool Size=0;Maximum Pool Size=100;Connection Lifetime=0;SSL Mode=Disable;Trust Server Certificate=true",
33
"MinIO":{
4-
"Endpoint":"",
5-
"AccessKey":"",
6-
"SecretKey":""
4+
"Endpoint":"minio",
5+
"AccessKey":"admin",
6+
"SecretKey":"jhvhJHVH!"
77
},
88
"Vapid":{
99
"Subject":"",

_azurite.env_

Lines changed: 0 additions & 1 deletion
This file was deleted.

appsettings.json

Lines changed: 0 additions & 16 deletions
This file was deleted.

compose.prod.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Everything incorrect todo fix
2+
13
services:
24
backend:
35
image: sigmaproductions/sigmachatserver:${IMAGE_TAG}

compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
- "5000:80"
66
networks:
77
- sigmaChat
8-
sqlServer:
8+
postgres:
99
image: "postgres"
1010
volumes:
1111
- sql_data:/var/lib/postgresql/data
@@ -18,7 +18,8 @@ services:
1818
networks:
1919
- sigmaChat
2020
minio:
21-
image: docker.io/bitnami/minio:2022
21+
image: minio/minio:latest
22+
entrypoint: ["sh", "-c", "minio server /data --console-address ':9001'"]
2223
ports:
2324
- "9000:9000"
2425
- "9001:9001"
@@ -30,7 +31,6 @@ services:
3031
- MINIO_ROOT_USER=admin
3132
- MINIO_ROOT_PASSWORD=jhvhJHVH!
3233
- MINIO_DEFAULT_BUCKETS=jehovahs-pictures
33-
3434
volumes:
3535
sql_data:
3636
minio_data:

0 commit comments

Comments
 (0)