wiki/docs/docker-compose/ethercalc.md
2024-05-04 17:03:07 +02:00

720 B

Portainer Stack:

---
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