fix docker and path incorrect

This commit is contained in:
Kai Ton 2024-03-01 12:36:44 +00:00
parent 38348f7fa2
commit 8f806b078c
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
const amqplib = require("amqplib"); const amqplib = require("amqplib");
const connectStr = "amqp://rabbit:rabbit123@localhost"; const connectStr = "amqp://rabbit:rabbit123@rabbitmq";
(async () => { (async () => {
const conn = await amqplib.connect(connectStr); const conn = await amqplib.connect(connectStr);

View File

@ -1,2 +1,2 @@
#!/bin/sh #!/bin/sh
php /app/artisan horizon & php /producer/artisan horizon &