This repository has been archived on 2024-11-01. You can view files and clone it, but cannot push or open issues or pull requests.
services/webdis/docker-compose.yml

22 lines
386 B
YAML

services:
webdis:
image: nicolas/webdis:latest
restart: always
command: /usr/local/bin/webdis /config/webdis.json
volumes:
- ./webdis.json:/config/webdis.json
networks:
- shared
depends_on:
- redis
ports:
- "127.0.0.1:7379:7379"
redis:
image: redis:6.2.6
restart: always
networks:
- shared
networks:
shared: