1

DigitalOcean で Dokku を使用して Dart プロジェクトを構築しようとしています。Node.js プロジェクトと同じ方法で実行します。しかし、Git を Dokku オリジンにプッシュするとエラーが発生します。それを手伝ってもらえますか:

$ git push dokku master 
Counting objects: 632, done. 
Delta compression using up to 4 threads. 
Compressing objects: 100% (605/605), done. 
Writing objects: 100% (632/632), 7.98 MiB | 74.00 KiB/s, done. 
Total 632 (delta 264), reused 0 (delta 0) 
-----> Building svpe ... 
Dart app detected 
-----> Welcome, this machine is: Linux e82c0d50ae50 3.8.0-19-generic #30-Ubuntu SMP Wed May 1 16:35:23 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux 
-----> Installing Dart VM via URL http://commondatastorage.googleapis.com/dart-editor-archive-integration/latest/dartsdk-linux-64.tar.gz 
remote: % Total % Received % Xferd Average Speed Time Time Time Current 
remote: Dload Upload Total Spent Left Speed 
remote: 100 127 100 127 0 0 426 0 --:--:-- --:--:-- --:--:-- 494 
remote: 
remote: gzip: stdin: not in gzip format 
remote: tar: Child returned status 1 
remote: tar: Error is not recoverable: exiting now 
To dokku@95.85.57.74:svpe 
! [remote rejected] master -> master (pre-receive hook declined) 
error: failed to push some refs to 'dokku@95.85.57.74:svpe'
4

2 に答える 2

0

私もこの問題を抱えていました!私の解決策は、サーバーに追加のスワップスペースを追加することでした。Dokku で 512MB の DigitalOcean ドロップレットを使用していました。

512MBのスワップファイルを追加

su -
dd if=/dev/zero of=/swapfile1 bs=1024 count=524288
mkswap /swapfile1
chown root:root /swapfile1
chmod 0600 /swapfile1
swapon /swapfile1

fstab の更新

vi /etc/fstab

/swapfile1 swap swap defaults 0 0

で確認free -m

このページから手順を取得しました

于 2014-03-22T02:23:21.367 に答える