2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2026-01-04 12:05:02 +01:00

add ethercalc

This commit is contained in:
kev
2020-06-23 15:30:30 +08:00
parent 94dc534507
commit cd71789f10
3 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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