teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

3

追記

2023/03/31 01:43

投稿

goola
goola

スコア67

title CHANGED
File without changes
body CHANGED
@@ -27,4 +27,9 @@
27
27
  ```error
28
28
  mailhog The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested 0.0s
29
29
  ```
30
- となります。
30
+ となります。
31
+
32
+ 追記3)
33
+ chatGPTが、ターミナルで「docker pull mailhog/mailhog:latest」と入力ののちに、
34
+ 「docker run -d -p 1025:1025 -p 8025:8025 mailhog/mailhog:latest」で起動しろというのでやってみましたが、docker起動時に「The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested」と表示されます。
35
+ やはり、appleシリコンには対応していないのですかね?

2

追記2

2023/03/31 01:20

投稿

goola
goola

スコア67

title CHANGED
File without changes
body CHANGED
@@ -19,4 +19,12 @@
19
19
  ```
20
20
  といれてみましたが、
21
21
  services.services Additional property mailhog is not allowed
22
+ となります。
23
+
24
+ 追記2)
25
+ 上は書き方が悪かったです。他のservicesと続けて書いたらインストールがすすみました。
26
+ ただ、
27
+ ```error
28
+ mailhog The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested 0.0s
29
+ ```
22
30
  となります。

1

追記

2023/03/31 01:14

投稿

goola
goola

スコア67

title CHANGED
File without changes
body CHANGED
@@ -6,3 +6,17 @@
6
6
  当方はm2macです。
7
7
 
8
8
  よろしくお願いいたします。
9
+
10
+ 追記1)
11
+ docker-compose.ymlに
12
+ ```
13
+ services:
14
+ mailhog:
15
+ image: mailhog/mailhog
16
+ ports:
17
+ - "1025:1025"
18
+ - "8025:8025"
19
+ ```
20
+ といれてみましたが、
21
+ services.services Additional property mailhog is not allowed
22
+ となります。