0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

M1 macでintelイメージなDockerコンテナを動かすときの備忘録

0
Posted at

備忘録

Dockerfileでintelイメージで作成するときのおまじない

(Rosetta 2は各自導入しておきましょう)

Dockerfile

FROM --platform=linux/x86_64 ubuntu:22.04

FROM --platform=linux/x86_64 php:8.1-apache-bullseye

Apacheが起動しない

# /usr/sbin/service httpd start
Starting  
[Tue Dec 12 23:38:11.970835 2023] [core:emerg] [pid 2410] (95)Operation not supported: AH00023: Couldn't create the mpm-accept mutex 
(95)Operation not supported: could not create accept mutex
AH00015: Unable to open logs
httpd is started.

/etc/apache2/apache2.conf や /usr/local/httpd/conf/httpd.conf などの
confにMutex posixsemを追加する

#M1 MAC時追記
Mutex posixsem
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?