fix: We still had places to improve. Turns out this is pretty important.
Some checks failed
CI/CD / build-and-test (push) Has been cancelled

This commit is contained in:
Felipe Cotti 2024-12-05 15:14:17 -03:00
parent 8f44b25d44
commit a2e1d45661
3 changed files with 15 additions and 3 deletions

12
build/.env.template Normal file
View file

@ -0,0 +1,12 @@
ACCESS_USERNAME=user
ACCESS_PASSWORD=pass
ACCESS_TOKENKEY=youbetterbesureyouareusingatokenkey
ACCESS_ISSUER=https://guestbooky.example.com/api
ACCESS_AUDIENCE=https://guestbooky.example.com
CLOUDFLARE_SECRET=0x000000000000000000000000000000000
CORS_ORIGINS=https://guestbooky.example.com
MONGO_INITDB_ROOT_USERNAME=root
MONGO_INITDB_ROOT_PASSWORD=mongo
GUESTBOOKY_DB_NAME=Guestbooky
GUESTBOOKY_USER=guestbookyuser
GUESTBOOKY_PASSWORD=guestbookypassword

View file

@ -13,7 +13,7 @@ services:
- mongodata:/data/db - mongodata:/data/db
command: ["mongod", "--config", "/etc/mongod.conf"] command: ["mongod", "--config", "/etc/mongod.conf"]
ports: ports:
- "27017:27017" - "127.0.0.1:27017:27017"
mongo-express: mongo-express:
image: mongo-express image: mongo-express
@ -27,7 +27,7 @@ services:
depends_on: depends_on:
- mongo - mongo
ports: ports:
- "8082:8081" - "127.0.0.1:8082:8081"
volumes: volumes:
mongodata: mongodata:

View file

@ -4,7 +4,7 @@ services:
image: cotti/guestbooky-be image: cotti/guestbooky-be
container_name: guestbooky-be container_name: guestbooky-be
ports: ports:
- "8080:8080" - "127:0.0.1:8080:8080"
environment: environment:
ASPNETCORE_ENVIRONMENT: Production ASPNETCORE_ENVIRONMENT: Production
CORS_ORIGINS: ${CORS_ORIGINS} CORS_ORIGINS: ${CORS_ORIGINS}