この特定のビルドを 1 か月ほど実行しておらず、最近ドローン バージョン0.5
から0.7.3
. postgres サービスを使用したビルドが完了しないという問題が発生しました。ログによると、接続を受け入れているはずですが、サービスを開始するステップを通過することはありません。
失速する例
.ドローン.yml
pipeline:
Run Something:
image: busybox
commands:
- echo 'hello'
services:
postgres:
image: postgres
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=pgpass
ports:
- '15432:5432'
ログ出力
The files belonging to this database system will be owned by user "postgres".
This user must also own the server process.
The database cluster will be initialized with locale "en_US.utf8".
The default database encoding has accordingly been set to "UTF8".
The default text search configuration will be set to "english".
Data page checksums are disabled.
fixing permissions on existing directory /var/lib/postgresql/data ... ok
creating subdirectories ... ok
selecting default max_connections ... 100
selecting default shared_buffers ... 128MB
selecting dynamic shared memory implementation ... posix
creating configuration files ... ok
running bootstrap script ... ok
performing post-bootstrap initialization ... ok
syncing data to disk ... ok
Success. You can now start the database server using:
pg_ctl -D /var/lib/postgresql/data -l logfile start
WARNING: enabling "trust" authentication for local connections
You can change this by editing pg_hba.conf or using the option -A, or
--auth-local and --auth-host, the next time you run initdb.
waiting for server to start....LOG: database system was shut down at 2017-08-17 00:06:37 UTC
LOG: MultiXact member wraparound protections are now enabled
LOG: database system is ready to accept connections
LOG: autovacuum launcher started
done
server started
ALTER ROLE
/usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/*
LOG: received fast shutdown request
LOG: aborting any active transactions
LOG: autovacuum launcher shutting down
waiting for server to shut down....LOG: shutting down
LOG: database system is shut down
done
server stopped
PostgreSQL init process complete; ready for start up.
LOG: database system was shut down at 2017-08-17 00:06:38 UTC
LOG: MultiXact member wraparound protections are now enabled
LOG: database system is ready to accept connections
LOG: autovacuum launcher started
ノート
すべてがここに留まり、ビルドが完了することはありません。ポートと環境変数を削除すると、実行できるようになります。適切に実行するために構成を必要としないサンドボックスでそれを行いました... もちろん、実際には、ビルドが適切に機能するようにポートとパスワードを調整する必要があります。
先月かそこらで、ドローンのバージョン以外は何も変更していません。私は困惑しています。
私が試したこと
- 一度に 1 つの ENV 変数を削除する変更
- 異なるバージョンの postgres
- ポート マッピングを定義しない
detach: true
サービスではなく利用
お時間をいただきありがとうございます!