Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ services:
- RABBITMQ_CONFIG_FILE=/etc/pitstop/rabbitmq.conf

sqlserver:
image: mcr.microsoft.com/azure-sql-edge:latest
image: mcr.microsoft.com/mssql/server:2019-latest
container_name: sqlserver
restart: unless-stopped
volumes:
- sqlserver:/var/opt/mssql
ports:
Expand Down Expand Up @@ -43,6 +44,7 @@ services:
vehiclemanagementapi:
image: pitstop/vehiclemanagementapi:1.0
build: VehicleManagementAPI
restart: unless-stopped
depends_on:
- rabbitmq
- sqlserver
Expand All @@ -54,6 +56,7 @@ services:
customermanagementapi:
image: pitstop/customermanagementapi:1.0
build: CustomerManagementAPI
restart: unless-stopped
depends_on:
- rabbitmq
- sqlserver
Expand Down Expand Up @@ -86,6 +89,7 @@ services:
image: pitstop/invoiceservice:1.0
build: InvoiceService
container_name: invoiceservice
restart: unless-stopped
depends_on:
- rabbitmq
- sqlserver
Expand All @@ -97,6 +101,7 @@ services:
image: pitstop/notificationservice:1.0
build: NotificationService
container_name: notificationservice
restart: unless-stopped
depends_on:
- rabbitmq
- sqlserver
Expand All @@ -117,6 +122,7 @@ services:
image: pitstop/workshopmanagementeventhandler:1.0
build: WorkshopManagementEventHandler
container_name: workshopmanagementeventhandler
restart: unless-stopped
depends_on:
- rabbitmq
- sqlserver
Expand Down