mirror of
https://github.com/vimagick/dockerfiles.git
synced 2026-01-04 12:05:02 +01:00
add ethercalc
This commit is contained in:
19
ethercalc/docker-compose.yml
Normal file
19
ethercalc/docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user