Skip to content

Instantly share code, notes, and snippets.

@langston-barrett
Created May 4, 2018 20:56
Show Gist options
  • Save langston-barrett/4ebfa6042ca096dc39cdc8e1918839de to your computer and use it in GitHub Desktop.
Save langston-barrett/4ebfa6042ca096dc39cdc8e1918839de to your computer and use it in GitHub Desktop.
Dropbox in Docker

Add the following to your NixOS configuration:

  virtualisation.docker.enable = true;

and

sudo nixos-rebuild switch

You may have to restart at this point. Once you have Docker installed and running,

sudo docker run -d --restart=always --name=dropbox \
                   -v ~/Dropbox:/dbox/Dropbox \
                   janeczku/dropbox

and follow the instructions here: https://hub.docker.com/r/janeczku/dropbox/

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