質問編集履歴

3

追記

2023/03/31 01:43

投稿

goola
goola

スコア62

test CHANGED
File without changes
test CHANGED
@@ -28,3 +28,8 @@
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

スコア62

test CHANGED
File without changes
test CHANGED
@@ -20,3 +20,11 @@
20
20
  といれてみましたが、
21
21
  services.services Additional property mailhog is not allowed
22
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
+ ```
30
+ となります。

1

追記

2023/03/31 01:14

投稿

goola
goola

スコア62

test CHANGED
File without changes
test CHANGED
@@ -7,3 +7,16 @@
7
7
 
8
8
  よろしくお願いいたします。
9
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
+ となります。