Ethercalc

Portainer Stack:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
version: "3.9"
services:
  ethercalc:
    container_name: ethercalc
    image: audreyt/ethercalc
    restart: unless-stopped
    network_mode: ${NET-bridge}
    ports:
      - 8700:8000
    environment:
      - REDIS_PORT_6379_TCP_ADDR=ethercalc-redis
      - REDIS_PORT_6379_TCP_PORT=6379
    links:
      - ethercalc-redis:redis
    labels:
      - com.centurylinklabs.watchtower.enable=true

  ethercalc-redis:
    container_name: ethercalc-redis
    image: redis:${TAG-latest}
    restart: unless-stopped
    network_mode: ${NET-bridge}
    command: redis-server --appendonly yes
    volumes:
      - /docker/redis:/data
    labels:
      - com.centurylinklabs.watchtower.enable=true