Skip to content

Commit a5f6768

Browse files
committed
Added environment variables for the container with the package
1 parent 7bd04e8 commit a5f6768

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

docker-compose.dev.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ services:
1616
- APP_DEBUG=False
1717
- APP_SERVER=none
1818
- WAIT_FOR_RABBITMQ=30
19+
- AMQP_USERNAME=user
20+
- AMQP_PASSWORD=password
21+
- AMQP_HOST=rabbitmq
22+
- AMQP_VIRTUAL_HOST=/
1923
volumes:
2024
- ./:/app/
2125
depends_on:
@@ -30,8 +34,8 @@ services:
3034
- 5672:5672
3135
- 15672:15672
3236
environment:
33-
- RABBITMQ_USERNAME=guest
34-
- RABBITMQ_PASSWORD=guest
35-
- RABBITMQ_VHOST=vhost
37+
- RABBITMQ_USERNAME=user
38+
- RABBITMQ_PASSWORD=password
39+
- RABBITMQ_VHOST=/
3640
networks:
3741
- app-tier

0 commit comments

Comments
 (0)