diff options
author | System administrator | 2017-05-29 13:26:10 +0200 |
---|---|---|
committer | System administrator | 2017-05-29 13:26:10 +0200 |
commit | bc5c44dd049bad3b007be48b3f8d90886d63c105 (patch) | |
tree | a381d989db2295f228f9bc95a774f0cc9aef4c40 /services/router.yml | |
download | server-bc5c44dd049bad3b007be48b3f8d90886d63c105.tar.gz server-bc5c44dd049bad3b007be48b3f8d90886d63c105.tar.xz server-bc5c44dd049bad3b007be48b3f8d90886d63c105.zip |
Initial commit
Diffstat (limited to 'services/router.yml')
-rw-r--r-- | services/router.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/services/router.yml b/services/router.yml new file mode 100644 index 0000000..1c43a65 --- /dev/null +++ b/services/router.yml @@ -0,0 +1,21 @@ +version: '3' + +volumes: + router_data: + +services: + router: + build: $IMAGES/router + depends_on: + - runit + - git + - paste + - znc + - taskwarrior + ports: + - "80:80" # http + - "443:443" # https + - "6667:6667" # IRC (TLS terminated) + volumes: + - $IMAGES/router/nginx/:/etc/nginx:ro + - router_data:/data |