Questions tagged [dokku]

Docker powered mini-Heroku in around 100 lines of Bash

Docker powered mini-Heroku. The smallest PaaS implementation you've ever seen. More information and sources on https://github.com/progrium/dokku

439 questions
6
votes
2 answers

can't deploy git repository to dokku instance (fatal: {reponame} does not appear to be a git repository)

I'm trying to deploy my application which is located on my local git repo to my dokku instance on digitalocean. Zone file $ORIGIN mydomain.com. $TTL 1800 ... mydomain.com. 1800 IN A 11.22.33.44 www.mydomain.com. 1800 IN CNAME…
Ronin
  • 5,059
  • 3
  • 29
  • 52
6
votes
1 answer

how to use sidekiq worker to access uploaded file in a rails app on Dokku server

I'm using sidekiq plugin: https://github.com/bigboxsoftware/dokku-sidekiq to enable sidekiq on the server. And the problem is the worker cannot access file in any of app folders. As the plugin README said Adds a post-deploy hook to Dokku to…
Perpherior
  • 201
  • 1
  • 9
6
votes
2 answers

dokku - where is my application's directory

I am trying to access logs of my Node.js application which is written in file mylogfile.log inside application's directory. Using find / -type f -name mylogfile.log i was able to see this…
Max Yari
  • 3,147
  • 4
  • 26
  • 52
6
votes
1 answer

How do I set nginx configuration settings on a per app basis in Dokku?

I need to increase the client_max_body_size setting for a single app I have installed on a Dokku Paas. I could edit the nginx configuration globally, but that would be brittle, and I would like this setting to live with the app config where…
flightlessbird
  • 333
  • 2
  • 8
5
votes
0 answers

How to Heroku-style app monitoring in Dokku?

I really like Heroku's app monitoring. But I don't have it in my Dokku PaaS. I want to see my apps and plugins CPU, RAM, disk load, network IO, ... Is there a way that I can easily collect and visualize these stats with Dokku? Is there an…
Daniil Okhlopkov
  • 292
  • 1
  • 4
  • 10
5
votes
3 answers

Error Deploying Rails on Dokku - on Digital Ocean

I'm trying to run dokku on DigitalOcean with a sample rails app, but when I deploy, I get this error: Puma starting in single mode... * Version 3.12.1 (ruby 2.6.3-p62), codename: Llamas in Pajamas * Min threads: 5, max threads:…
Daniel D
  • 3,477
  • 4
  • 32
  • 40
5
votes
2 answers

How to copy a couchdb in dokku

I want to take a snapshot of one database running in app www and put it into app staging. When I do that with clone or create/import none of the data is available. How am I meant to do it? matt@server:~$ dokku run www curl…
Matt Ellen
  • 9,933
  • 4
  • 61
  • 80
5
votes
2 answers

Error when deploying with git (dokku) - timeout / broken pipe

I use dokku with digital ocean for a while now without any problem I have a problem now when deploying to dokku leveraging the following command: git remote add dokku dokku@some-ip:myapp git push dokku develop:master I have the following…
Thierry Templier
  • 182,931
  • 35
  • 372
  • 339
5
votes
1 answer

How to change Default App in Dokku for Domain Host Name

As a personal project I've deployed the Dokku Image on Digital Ocean and got everything working well. In fact it works very well as I've done it before, but I have a question on how I can change what "default" app the Domain Host Name points…
newbreedofgeek
  • 2,242
  • 1
  • 15
  • 15
5
votes
1 answer

Dokku domains:add returns unsupported vhost config found. disabling vhost support

This is my first site I've were I've tried to use Dokku to deploy a rails app on Digital Ocean. This is a default Dokku install on a basic Ubuntu VM hosted on Digital Ocean When I try to run: dokku domains:add myapp mydomain.com I get the following…
greyoxide
  • 943
  • 13
  • 31
5
votes
0 answers

setting up laravel 5 artisan schedule:run on dokku (digitalocean)

I'm having trouble setting up a cronjob for laravel 5 scheduler. It seems like the dokku run command doesn't perform all commands inside the dokku container. for example ... if I log into my server and I perform dokku run php…
Locsie
  • 51
  • 2
5
votes
5 answers

See git commit hash of running Dokku app?

I am running a Dokku app in production and need to know what version of the app is running on the server. Is this possible with Dokku?
Rick
  • 6,513
  • 7
  • 37
  • 64
5
votes
1 answer

Development and production with docker with multiple sites

Currently I have 3 linode servers: 1: Cache server (Ubuntu, varnish) 2: App server (Ubuntu, nginx, rabbitmq-server, python, php5-fpm, memcached) 3: DB server (Ubuntu, postgresql + pg_bouncer) On my app-server I have multiple sites (topdomains). Each…
Tomas Jacobsen
  • 2,179
  • 6
  • 32
  • 66
5
votes
1 answer

Collectstatic configuration error when deploying Django app with dokku

When deploying a Django app using dokku I am getting a following error Collectstatic configuration error. To debug, run: $ heroku run python ./manage.py collectstatic --noinput I found no way to run heroku run python ./manage.py collectstatic…
silentser
  • 1,991
  • 2
  • 21
  • 27
5
votes
1 answer

deploying node.js app with mongodb with dokku on digital ocean

I am trying to deploy a Node.js app with mongodb on digital ocean with dokku. Unfortunately, I have some problems having the node app connecting to mongodb. What have I done so far. 0. I have a node.js app in a git repo 1. Created dokku instance in…
Mike
  • 2,543
  • 3
  • 22
  • 53
1
2
3
29 30