Skip to content

Instantly share code, notes, and snippets.

@joshghent
Created May 5, 2020 16:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshghent/39fa894630b55bd32aabf2bd09544ba3 to your computer and use it in GitHub Desktop.
Save joshghent/39fa894630b55bd32aabf2bd09544ba3 to your computer and use it in GitHub Desktop.
Dokku Help
version: '3.7'
services:
dokku:
image: dokku/dokku:latest
hostname: dokku.ghent.cloud
environment:
- DOKKU_HOSTNAME=dokku.domain.cloud
- VIRTUAL_PORT=32087
- VIRTUAL_HOST=dokku.domain.cloud
- LETSENCRYPT_HOST=dokku.domain.cloud
- LETSENCRYPT_EMAIL=redacted@domain.cloud
volumes:
- $PWD/data:/mnt/dokku
- /var/run/docker.sock:/var/run/docker.sock
ports:
- "32087:80"
expose:
- "32087"
networks:
- https-proxy
networks:
https-proxy:
external:
name: https-proxy
Attaching to dokku_dokku_1
dokku_1 | *** Running /etc/my_init.d/10_dokku_init...
dokku_1 | -----> Set dokku.ghent.cloud
dokku_1 | *** Running /etc/my_init.d/15_regen_ssh_host_keys...
dokku_1 | *** Booting runit daemon...
dokku_1 | *** Runit started as PID 51
@jbosse
Copy link

jbosse commented May 21, 2020

Totally random question, did you ever get this working?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment