ブリッジ ネットワークの下で 3 つのサービス (db、nginx、および Web サービス) をリンクし、ローカルホストまたはコンテナー内からさまざまなサービスを調べて、Web サービス用の対話型ターミナルを用意したいと考えています。どうすればこれを達成できますか?
私の docker-compose 構成は次のとおりです。
version: '2'
services:
web:
build:
context: .
dockerfile: Dockerfile-alpine
command: /bin/bash
ports:
- "5000:5000"
volumes:
- $REPO_DIR:/repository
links:
- db
- nginx
nginx:
image: nginx:stable-alpine
ports:
- "8080:8080"
volumes:
- $NGINX_STATIC_DIR:/var/www/static
- $NGINX_CONFIG_FILE:/etc/nginx/nginx.conf
db:
image: mysql/mysql-server
ports:
- "3307:3306"
environment:
MYSQL_USER: $MYSQL_USER
MYSQL_PASSWORD: $MYSQL_PASSWORD
MYSQL_DATABASE: $MYSQL_DATABASE
MYSQL_ROOT_PASSWORD: $MYSQL_ROOT_PASSWORD
volumes:
- $DB_DATA_DIR:/var/lib/mysql
- $DB_LOG_DIR:/var/log/mysql
ここで、Web サービスは をmhart/alpine-node:6.7.0
ベースとして使用し、さらにいくつかのユーティリティと Python3.5 および Flask を追加します。
実行docker-compose run web
すると、インタラクティブ ターミナルにアクセスできますが、db および nginx サービスが適切に起動/リンクされません。次の出力が得られます。
Starting courseadmin_nginx_1
Starting courseadmin_db_1
bash-4.3#
そして、コンテナ内からのさらなるネットワーク フォレンジックにより、nginx も db も存在しないことが判明しました。docker-compose up
ホストシステムにmysqlがインストールされていることを認められたdbサービスのポート競合が実際に作成されたため、この主張をさらにサポートできdocker-compose run
ます.
一方、試してみるとdocker-compose up
、はるかにアクティブなトレースが得られますが、インタラクティブなターミナルは得られません:
Starting courseadmin_nginx_1
Recreating courseadmin_db_1
Recreating courseadmin_web_1
Attaching to courseadmin_nginx_1, courseadmin_db_1, courseadmin_web_1
db_1 | Initializing database
courseadmin_web_1 exited with code 0
db_1 | Database initialized
db_1 | MySQL init process in progress...
db_1 | Warning: Unable to load '/usr/share/zoneinfo/iso3166.tab' as time zone. Skipping it.
db_1 | Warning: Unable to load '/usr/share/zoneinfo/zone.tab' as time zone. Skipping it.
db_1 | mysql: [Warning] Using a password on the command line interface can be insecure.
db_1 | mysql: [Warning] Using a password on the command line interface can be insecure.
db_1 | mysql: [Warning] Using a password on the command line interface can be insecure.
db_1 | mysql: [Warning] Using a password on the command line interface can be insecure.
db_1 |
db_1 | /entrypoint.sh: ignoring /docker-entrypoint-initdb.d/*
db_1 |
db_1 |
db_1 | MySQL init process done. Ready for start up.
db_1 |
対話型ターミナルと 3 つのコンテナーの適切なリンクを実現するにはどうすればよいですか?