25 lines
482 B
YAML
25 lines
482 B
YAML
|
---
|
||
|
webdis_svc:
|
||
|
name: webdis
|
||
|
domain: webdis.huck.serguzim.me
|
||
|
port: 7379
|
||
|
|
||
|
webdis_compose:
|
||
|
watchtower: true
|
||
|
image: nicolas/webdis
|
||
|
volumes:
|
||
|
- ./webdis.json:/config/webdis.json
|
||
|
file:
|
||
|
services:
|
||
|
app:
|
||
|
command: /usr/local/bin/webdis /config/webdis.json
|
||
|
depends_on:
|
||
|
- redis
|
||
|
redis:
|
||
|
image: redis:6.2.6
|
||
|
restart: always
|
||
|
labels:
|
||
|
com.centurylinklabs.watchtower.enable: true
|
||
|
networks:
|
||
|
default:
|