centos:7のイメージを元にphpを入れたりlaravelを入れたりして利用してました。
phpを利用している為、systemctl restart httpd など apacheの再起動が時々必要になります。
Macを利用しており、先日Dockerのバージョンアップをしました。Docker Desktop 4.3.0
コンテナに入ったあとsystemctlの実行結果は下記です。
Failed to get D-Bus connection: No such file or directory
docker-compose.ymlです
version: "3" services: api: build: . privileged: true command: /sbin/init ports: - "80:80" volumes: - type: bind source: "./laravel/" target: "/var/www/html/laravel"
privileged: true
command: /sbin/init
を設定していればsystemctlコマンドは利用できていた認識です。詳しい方教えてください。
回答1件
あなたの回答
tips
プレビュー