Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
WarriorsSami committed Sep 24, 2024
2 parents b8f4f7a + a06655a commit 6c15faa
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
7 changes: 7 additions & 0 deletions quetzalcoatl-auth/Domain/Entities/ApplicationRoles.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
namespace Domain.Entities;

public enum ApplicationRoles
{
Proposer,
Admin
}
28 changes: 28 additions & 0 deletions quetzalcoatl-auth/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Define services + volumes for quetzalcoatl
version: '3.7'
services:
auth-service:
build:
context: .
dockerfile: Dockerfile
ports:
- "5210:5210"
env_file:
- .env
depends_on:
mssql-db:
condition: service_started

mssql-db:
image: mcr.microsoft.com/mssql/server:2022-latest
user: root
ports:
- "1434:1433"
env_file:
- .env
volumes:
- quetzalcoatl-db:/var/opt/mssql/data

volumes:
quetzalcoatl-db:

0 comments on commit 6c15faa

Please sign in to comment.