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

485 questions
7
votes
1 answer

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
  • 502
  • 1
  • 6
  • 11
7
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,637
  • 5
  • 36
  • 41
7
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,617
  • 5
  • 32
  • 56
7
votes
2 answers

Running a docker image on dokku

1) I know and have deployed many apps to dokku. 2) I know the whole git push to a subdomain process of dokku. 3) I also run images from docker by themselves and they run great. 4) I really cant seem to find an answer to this anywhere though. How can…
user1323136
  • 889
  • 2
  • 11
  • 20
7
votes
3 answers

How to correctly install dokku - with or without sudo?

I'm learning dokku right now for simple web deployment. Offical install instructions state this command: wget -qO- https://raw.github.com/progrium/dokku/v0.3.12/bootstrap.sh | sudo DOKKU_TAG=v0.3.12 bash I'm not a devop or admin, but as far as I…
grigoryvp
  • 40,413
  • 64
  • 174
  • 277
6
votes
1 answer

How to use docker compose with dokku?

I'm trying to run matomo in a dokku instance with https://github.com/rclement/dokku-matomo This dokku setup is using a docker image: https://github.com/crazy-max/docker-matomo The above dokku setup uses quite an old version of the docker-matomo…
waffl
  • 5,179
  • 10
  • 73
  • 123
6
votes
1 answer

Dokku subdomain cant be found

I deployed an app to my Digital Ocean Dokku instance, and set it up with a domain such that https://example.com (using letsencrypt dokku plugin) points to my originalApp. I recently tried to deploy a second app on my Dokku instance thinking I would…
Jamie S
  • 2,029
  • 2
  • 13
  • 19
6
votes
1 answer

Dokku/Docker out of disk space - How to enter app

So my question is I have an errant rails app deployed using Dokku with the default Digital Ocean setup. This rails app has eaten all of the disk space as I did not set up anything to clean out the /tmp directory. So the output of df is: Filesystem …
Romuloux
  • 1,027
  • 1
  • 8
  • 24
6
votes
2 answers

Setting Dokku environment variables

I'm trying to set Some variables on Dokku for deployment. As far as i can see from the dev files, one should create a .env file in the directory and put the variables in there. But this is not updating anything .env…
Ron
  • 1,047
  • 13
  • 18
6
votes
1 answer

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
  • 7,322
  • 6
  • 36
  • 54
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
1 answer

Where are my static files in a Dokku based installation?

I finished a Dokku deployment on a Digitalocean server. My application seems to work, except for my static files. Here are the relevant parts of my settings.py file: PROJECT_DIR = Path(__file__).absolute().ancestor(2) MEDIA_ROOT = '' MEDIA_URL =…
Shai Efrati
  • 516
  • 1
  • 7
  • 27
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
  • 11,268
  • 4
  • 68
  • 90
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
  • 198,364
  • 44
  • 396
  • 360
5
votes
1 answer

How to get git remote URL of the dokku app

I installed dokku on a pure Ubuntu server 16.04 LTS My server's domain name is e.g. abc.def.com I created a new app, e.g. blog dokku apps:create blog How can I get correct URL to set git remote git remote add dokku :blog I tried the case based…
Sergiy Seletskyy
  • 16,236
  • 7
  • 69
  • 80
1
2
3
32 33