mysql 找不到docker bash apt-get,yum,dnf命令

6ioyuze2  于 2023-01-12  发布在  Mysql
关注(0)|答案(1)|浏览(231)

我想在我的docker容器中安装vim,但是有一些问题,所以我不能安装vim...我的docker容器操作系统如下。

Oracle Linux Server release 8.6
NAME="Oracle Linux Server"
VERSION="8.6"
ID="ol"
ID_LIKE="fedora"
VARIANT="Server"
VARIANT_ID="server"
VERSION_ID="8.6"
PLATFORM_ID="platform:el8"
PRETTY_NAME="Oracle Linux Server 8.6"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:oracle:linux:8:6:server"
HOME_URL="https://linux.oracle.com/"
BUG_REPORT_URL="https://bugzilla.oracle.com/"

ORACLE_BUGZILLA_PRODUCT="Oracle Linux 8"
ORACLE_BUGZILLA_PRODUCT_VERSION=8.6
ORACLE_SUPPORT_PRODUCT="Oracle Linux"
ORACLE_SUPPORT_PRODUCT_VERSION=8.6
Red Hat Enterprise Linux release 8.6 (Ootpa)
Oracle Linux Server release 8.6

我的docker-compose.yml是这样的。

version: "3"
services:
  mysql:
    image: mysql:latest
    container_name: mysql
    ports:
      - "3306:3306"
    restart: always
    environment:
      MYSQL_ROOT_PASSWORD: ""
      TZ: "Asia/Seoul"
    command:
      - --character-set-server=utf8mb4
      - --collation-server=utf8mb4_unicode_ci
    volumes:
      - /home/ubuntu/docker/data/mysql:/var/lib/mysql

但是我不能用dnf,yum,apt-get.我怎么在这里安装vim..?x1c 0d1x

cvxl0en2

cvxl0en21#

mysql:latest映像中未安装apt-get, yum, dnf。您应按如下方式使用microdnf

microdnf install -y vim

相关问题