-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.override.yml
More file actions
30 lines (26 loc) · 1.16 KB
/
docker-compose.override.yml
File metadata and controls
30 lines (26 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
version: '3.4'
# The default docker-compose.override file can use the "localhost" as the external name for testing web apps within the same dev machine.
# but values present in the environment vars at runtime will always override those defined inside the .env file
# An external IP or DNS name has to be used (instead localhost and the 10.0.75.1 IP) when testing the Web apps and the Xamarin apps from remote machines/devices using the same WiFi, for instance.
services:
rabbitmq:
ports:
- "15672:15672" # Important: In a production environment your should remove the external port
- "5672:5672" # Important: In a production environment your should remove the external port
subscriber:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- AppConfig__Host=rabbitmq
- AppConfig__VirtualHost=/
- AppConfig__Username=guest
- AppConfig__Password=guest
service:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=http://0.0.0.0:80
- AppConfig__Host=rabbitmq
- AppConfig__VirtualHost=/
- AppConfig__Username=guest
- AppConfig__Password=guest
ports:
- "5100:80"