1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 05:48:42 +00:00
dockerfiles/ethercalc/docker-compose.yml

20 lines
363 B
YAML
Raw Normal View History

2020-06-23 07:30:30 +00:00
version: "3.8"
services:
ethercalc:
image: audreyt/ethercalc
ports:
- "8000:8000"
environment:
- REDIS_PORT_6379_TCP_ADDR=redis
- REDIS_PORT_6379_TCP_PORT=6379
restart: unless-stopped
redis:
image: redis:5-alpine
command: redis-server --appendonly yes
volumes:
- ./data:/data
restart: unless-stopped