为什么“--force-recreate”不重建我的 docker mysql 映像?

2023-12-25

我创建了一个 docker MySql 5.7 映像,然后想更改几个名称。我的 docker-compose.yml 文件最终像这样

version: '3.3'

services:
  db:
    image: mysql:5.7
    restart: always
    environment:
      MYSQL_DATABASE: 'maps_data'
      # So you don't have to use root, but you can if you like
      MYSQL_USER: 'myuser'
      # You can use whatever password you like
      MYSQL_PASSWORD: 'password'
      # Password for root access
      MYSQL_ROOT_PASSWORD: 'password'
    ports:
      # <Port exposed> : < MySQL Port running inside container>
      - '3406:3306'
    expose:
      # Opens port 3406 on the container
      - '3406'
      # Where our data will be persisted
    volumes:
      - my-db:/var/lib/mysql
# Names our volume
volumes:
  my-db:

我想从头开始重建我的图像,并认为“docker-compose up -d --force-recreate”是正确的方法......

localhost:maps davea$ docker-compose down
Stopping maps_db_1 ... done
Removing maps_db_1 ... done
Removing network maps_default
localhost:maps davea$ 
localhost:maps davea$ docker-compose up -d --force-recreate
Creating network "maps_default" with the default driver
Creating maps_db_1 ... done
maps_db_1 is up-to-date
Attaching to maps_db_1
db_1  | 2020-01-28 23:16:19+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 5.7.29-1debian9 started.
db_1  | 2020-01-28 23:16:19+00:00 [Note] [Entrypoint]: Switching to dedicated user 'mysql'
db_1  | 2020-01-28 23:16:19+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 5.7.29-1debian9 started.
db_1  | 2020-01-28T23:16:20.051193Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
db_1  | 2020-01-28T23:16:20.052820Z 0 [Note] mysqld (mysqld 5.7.29) starting as process 1 ...
db_1  | 2020-01-28T23:16:20.056843Z 0 [Note] InnoDB: PUNCH HOLE support available
db_1  | 2020-01-28T23:16:20.056912Z 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
db_1  | 2020-01-28T23:16:20.056928Z 0 [Note] InnoDB: Uses event mutexes
db_1  | 2020-01-28T23:16:20.056944Z 0 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
db_1  | 2020-01-28T23:16:20.056959Z 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
db_1  | 2020-01-28T23:16:20.056975Z 0 [Note] InnoDB: Using Linux native AIO
db_1  | 2020-01-28T23:16:20.057616Z 0 [Note] InnoDB: Number of pools: 1
db_1  | 2020-01-28T23:16:20.057757Z 0 [Note] InnoDB: Using CPU crc32 instructions
db_1  | 2020-01-28T23:16:20.059523Z 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M
db_1  | 2020-01-28T23:16:20.070356Z 0 [Note] InnoDB: Completed initialization of buffer pool
db_1  | 2020-01-28T23:16:20.073066Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
db_1  | 2020-01-28T23:16:20.084799Z 0 [Note] InnoDB: Highest supported file format is Barracuda.
db_1  | 2020-01-28T23:16:20.097204Z 0 [Note] InnoDB: Creating shared tablespace for temporary tables
db_1  | 2020-01-28T23:16:20.097391Z 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
db_1  | 2020-01-28T23:16:20.134350Z 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
db_1  | 2020-01-28T23:16:20.135692Z 0 [Note] InnoDB: 96 redo rollback segment(s) found. 96 redo rollback segment(s) are active.
db_1  | 2020-01-28T23:16:20.135748Z 0 [Note] InnoDB: 32 non-redo rollback segment(s) are active.
db_1  | 2020-01-28T23:16:20.136582Z 0 [Note] InnoDB: Waiting for purge to start
db_1  | 2020-01-28T23:16:20.192038Z 0 [Note] InnoDB: 5.7.29 started; log sequence number 12442166
db_1  | 2020-01-28T23:16:20.192864Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
db_1  | 2020-01-28T23:16:20.193111Z 0 [Note] Plugin 'FEDERATED' is disabled.
db_1  | 2020-01-28T23:16:20.194918Z 0 [Note] InnoDB: Buffer pool(s) load completed at 200128 23:16:20
db_1  | 2020-01-28T23:16:20.198841Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them.
db_1  | 2020-01-28T23:16:20.198900Z 0 [Note] Skipping generation of SSL certificates as certificate files are present in data directory.
db_1  | 2020-01-28T23:16:20.199651Z 0 [Warning] CA certificate ca.pem is self signed.
db_1  | 2020-01-28T23:16:20.199712Z 0 [Note] Skipping generation of RSA key pair as key files are present in data directory.
db_1  | 2020-01-28T23:16:20.200248Z 0 [Note] Server hostname (bind-address): '*'; port: 3306
db_1  | 2020-01-28T23:16:20.200400Z 0 [Note] IPv6 is available.
db_1  | 2020-01-28T23:16:20.200413Z 0 [Note]   - '::' resolves to '::';
db_1  | 2020-01-28T23:16:20.200633Z 0 [Note] Server socket created on IP: '::'.
db_1  | 2020-01-28T23:16:20.204771Z 0 [Warning] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory.
db_1  | 2020-01-28T23:16:20.217005Z 0 [Note] Event Scheduler: Loaded 0 events
db_1  | 2020-01-28T23:16:20.217626Z 0 [Note] mysqld: ready for connections.
db_1  | Version: '5.7.29'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  MySQL Community Server (GPL)

但是,当我以 root 用户身份登录时,我在那里看不到我的数据库“maps_data”。不过,在进行更改之前我看到了旧的“db”数据库......

localhost:maps davea$ mysql -u root -h 127.0.0.1 --port=3406 -p 
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.29 MySQL Community Server (GPL)

Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> show databases
    -> ;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| db                 |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
5 rows in set (0.01 sec)

完全从头开始并重建我的 docker MySql 映像的正确方法是什么?


告诉 docker-compose 通过传入删除图像--rmi标志向下:

docker-compose down --rmi all

这告诉 compose 停止并删除所有容器、网络,并删除 docker-compose 文件中任何服务使用的所有映像。此外,您还可以通过--volumes删除所有命名卷(my-db在你的情况下)。但是,这将导致 docker-compose 文件中的命名卷被删除,并且您将丢失该数据。确保这是您想要的。

然后,要使用新图像重新运行应用程序,请使用--builddocker-compose up 选项可以在启动容器之前构建镜像。

docker-compose up -d --build

请参阅 docker-compose 参考up https://docs.docker.com/compose/reference/up/ and down https://docs.docker.com/compose/reference/down/以获得更多选择。

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

为什么“--force-recreate”不重建我的 docker mysql 映像? 的相关文章

随机推荐