RSSAmplifier

Andraž Bajt's blog · Aug 30, 2017

Dockerless Services (with Nix)

0
Sign in to vote or save

This page cannot be shown here. You can still read it on the original site — the toolbar below keeps your place in the directory.

So you want an &ldquo;isolated&rdquo; MySQL &ldquo;service&rdquo; but don&rsquo;t want to (or are not able to) run Docker/rkt/LXC/whatever? Here are the tl;dr steps: 1 2 3 4 5 6 7 8 9 cd /tmp mkdir mysql-1 cd mysql-1 nix-shell -p mysql mysql_install_db --datadir = $( pwd ) mysqld --datadir = $( pwd ) --socket = $( pwd ) /socket & mysqladmin -uroot -h127.0.0.1 password <REDACTED> mysql -uroot…

Read on /posts/2017-08-30-dockerless-services/

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.