Welcome to mirror list, hosted at ThFree Co, Russian Federation.

docker-compose.yml - github.com/erikdubbelboer/phpRedisAdmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ef83dfb84d08efb1f130108591583d4e7154f18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
services:
  phpredisadmin:
    build: .
    environment:
      - ADMIN_USER=admin
      - ADMIN_PASS=admin
      - REDIS_1_HOST=redis
      - REDIS_1_PORT=6379
    links:
      - redis
    ports:
      - "80:80"

  redis:
    image: redis
    command: --loglevel verbose