diff options
Diffstat (limited to 'services')
-rw-r--r-- | services/router.yml | 1 | ||||
-rw-r--r-- | services/runit.yml | 1 | ||||
-rw-r--r-- | services/znc.yml | 6 |
3 files changed, 7 insertions, 1 deletions
diff --git a/services/router.yml b/services/router.yml index 1c43a65..5c245fd 100644 --- a/services/router.yml +++ b/services/router.yml @@ -11,7 +11,6 @@ services: - git - paste - znc - - taskwarrior ports: - "80:80" # http - "443:443" # https diff --git a/services/runit.yml b/services/runit.yml index be5cc99..5aa9967 100644 --- a/services/runit.yml +++ b/services/runit.yml @@ -2,5 +2,6 @@ version: '3' services: runit: + image: server_runit build: $IMAGES/runit entrypoint: /bin/true diff --git a/services/znc.yml b/services/znc.yml index 624a252..47d0f78 100644 --- a/services/znc.yml +++ b/services/znc.yml @@ -5,6 +5,12 @@ volumes: services: znc: + depends_on: + - runit build: $IMAGES/znc volumes: - znc_data:/data + cap_add: + - ALL + - NET_BIND_SERVICE + - SETPCAP |