115100

Results 2 comments of 115100

```sh #!/sbin/openrc-run command=/bin/xow pidfile=/var/run/xow.pid command_background=true command_user="nobody:nobody" name="xow" depend() { keyword -lxc } ``` Works for me. Ideally, you want a dedicated user to run xow under instead of `nobody`, but...

``` FROM debian:stretch-slim as builder WORKDIR /tmp/odyssey/ COPY . /tmp/odyssey/ RUN set -ex \ && apt-get update \ && apt-get install -y --no-install-recommends \ build-essential \ cmake \ git \...