मुझे इस सुपर लंबे जवाब के लिए खेद है, लेकिन, आपके पास जहां आप चाहते हैं वहां जाने के लिए थोड़ा रास्ता है। मैं कहूंगा कि आम तौर पर आप डेटाबेस के लिए डेटाबेस के रूप में एक ही कंटेनर में स्टोरेज नहीं रखेंगे, आप या तो एक होस्ट वॉल्यूम माउंट करेंगे ताकि डेटा डॉक होस्ट पर बना रहे, या, शायद एक कंटेनर का उपयोग किया जा सके डेटा (/ var / lib / mysql) दबाए रखें। इसके अलावा, मैं mysql के लिए नया हूं, इसलिए, यह सुपर कुशल नहीं हो सकता है। ने कहा कि...
मुझे लगता है कि यहां कुछ मुद्दे हो सकते हैं। Dockerfile का उपयोग छवि बनाने के लिए किया जाता है। आपको बिल्ड चरण निष्पादित करने की आवश्यकता है। कम से कम, उस निर्देशिका से जिसमें डॉकरफ़ाइल सम्मिलित है, आप कुछ ऐसा करेंगे:
docker build .
Dockerfile बनाने के लिए छवि का वर्णन करता है। मुझे mysql के बारे में ज्यादा जानकारी नहीं है (मैं एक पोस्टग्रैस फैनबॉय हूं), लेकिन, मैंने 'मैं एक mysql docker कंटेनर को इनिशियलाइज़ कैसे करूं' के लिए इंटरव्यू के आसपास एक खोज की। पहले मैंने काम करने के लिए एक नई निर्देशिका बनाई, मैंने इसे mdir कहा, फिर मैंने एक फ़ाइल निर्देशिका बनाई, जिसे मैंने एक epcis_schema.sql फ़ाइल में जमा किया, जो एक डेटाबेस और एक एकल तालिका बनाता है:
create database test;
use test;
CREATE TABLE testtab
(
id INTEGER AUTO_INCREMENT,
name TEXT,
PRIMARY KEY (id)
) COMMENT='this is my test table';
तब मैंने फाइल डायरेक्टरी में init_db नामक स्क्रिप्ट बनाई:
#!/bin/bash
# Initialize MySQL database.
# ADD this file into the container via Dockerfile.
# Assuming you specify a VOLUME ["/var/lib/mysql"] or `-v /var/lib/mysql` on the `docker run` command…
# Once built, do e.g. `docker run your_image /path/to/docker-mysql-initialize.sh`
# Again, make sure MySQL is persisting data outside the container for this to have any effect.
set -e
set -x
mysql_install_db
# Start the MySQL daemon in the background.
/usr/sbin/mysqld &
mysql_pid=$!
until mysqladmin ping >/dev/null 2>&1; do
echo -n "."; sleep 0.2
done
# Permit root login without password from outside container.
mysql -e "GRANT ALL ON *.* TO root@'%' IDENTIFIED BY '' WITH GRANT OPTION"
# create the default database from the ADDed file.
mysql < /tmp/epcis_schema.sql
# Tell the MySQL daemon to shutdown.
mysqladmin shutdown
# Wait for the MySQL daemon to exit.
wait $mysql_pid
# create a tar file with the database as it currently exists
tar czvf default_mysql.tar.gz /var/lib/mysql
# the tarfile contains the initialized state of the database.
# when the container is started, if the database is empty (/var/lib/mysql)
# then it is unpacked from default_mysql.tar.gz from
# the ENTRYPOINT /tmp/run_db script
(इस स्क्रिप्ट का अधिकांश भाग यहां से हटा लिया गया था: https://gist.github.com/pda/9697520 )
यहाँ फ़ाइलें / run_db स्क्रिप्ट मैंने बनाई है:
# start db
set -e
set -x
# first, if the /var/lib/mysql directory is empty, unpack it from our predefined db
[ "$(ls -A /var/lib/mysql)" ] && echo "Running with existing database in /var/lib/mysql" || ( echo 'Populate initial db'; tar xpzvf default_mysql.tar.gz )
/usr/sbin/mysqld
अंत में, उन सभी को बांधने के लिए Dockerfile:
FROM mysql
MAINTAINER (me) <email>
# Copy the database schema to the /data directory
ADD files/run_db files/init_db files/epcis_schema.sql /tmp/
# init_db will create the default
# database from epcis_schema.sql, then
# stop mysqld, and finally copy the /var/lib/mysql directory
# to default_mysql_db.tar.gz
RUN /tmp/init_db
# run_db starts mysqld, but first it checks
# to see if the /var/lib/mysql directory is empty, if
# it is it is seeded with default_mysql_db.tar.gz before
# the mysql is fired up
ENTRYPOINT "/tmp/run_db"
इसलिए, मैंने अपनी mdir डायरेक्टरी (जिसमें फाइल डायरेक्टरी के साथ Dockerfile है) को cd'ed किया है। मैं फिर कमांड चलाता हूं:
docker build --no-cache .
आपको इस तरह आउटपुट देखना चाहिए:
Sending build context to Docker daemon 7.168 kB
Sending build context to Docker daemon
Step 0 : FROM mysql
---> 461d07d927e6
Step 1 : MAINTAINER (me) <email>
---> Running in 963e8de55299
---> 2fd67c825c34
Removing intermediate container 963e8de55299
Step 2 : ADD files/run_db files/init_db files/epcis_schema.sql /tmp/
---> 81871189374b
Removing intermediate container 3221afd8695a
Step 3 : RUN /tmp/init_db
---> Running in 8dbdf74b2a79
+ mysql_install_db
2015-03-19 16:40:39 12 [Note] InnoDB: Using atomics to ref count buffer pool pages
...
/var/lib/mysql/ib_logfile0
---> 885ec2f1a7d5
Removing intermediate container 8dbdf74b2a79
Step 4 : ENTRYPOINT "/tmp/run_db"
---> Running in 717ed52ba665
---> 7f6d5215fe8d
Removing intermediate container 717ed52ba665
Successfully built 7f6d5215fe8d
अब आपके पास एक चित्र है '7f6d5215fe8d'। मैं इस छवि को चला सकता हूं:
docker run -d 7f6d5215fe8d
और छवि शुरू होती है, मुझे एक उदाहरण स्ट्रिंग दिखाई देती है:
4b377ac7397ff5880bc9218abe6d7eadd49505d50efb5063d6fab796ee157bd3
मैं तब इसे 'रोक' सकता था, और इसे पुनः आरंभ कर सकता था।
docker stop 4b377
docker start 4b377
यदि आप लॉग को देखते हैं, तो पहली पंक्ति में होगा:
docker logs 4b377
Populate initial db
var/lib/mysql/
...
फिर, लॉग के अंत में:
Running with existing database in /var/lib/mysql
ये / tmp / run_db स्क्रिप्ट के संदेश हैं, पहला इंगित करता है कि डेटाबेस को सहेजे गए (प्रारंभिक) संस्करण से अनपैक किया गया था, दूसरा इंगित करता है कि डेटाबेस पहले से ही था, इसलिए मौजूदा प्रतिलिपि का उपयोग किया गया था।
यहाँ निर्देशिका संरचना का एक एलएसएल है जिसका मैं ऊपर वर्णन करता हूं। ध्यान दें कि init_db और run_db निष्पादित बिट सेट के साथ स्क्रिप्ट हैं:
gregs-air:~ gfausak$ ls -Rl mdir
total 8
-rw-r--r-- 1 gfausak wheel 534 Mar 19 11:13 Dockerfile
drwxr-xr-x 5 gfausak staff 170 Mar 19 11:24 files
mdir/files:
total 24
-rw-r--r-- 1 gfausak staff 126 Mar 19 11:14 epcis_schema.sql
-rwxr-xr-x 1 gfausak staff 1226 Mar 19 11:16 init_db
-rwxr-xr-x 1 gfausak staff 284 Mar 19 11:23 run_db