mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-26 10:43:35 +02:00
14 lines
244 B
YAML
14 lines
244 B
YAML
version: '2'
|
|
services:
|
|
redis:
|
|
image: redislabs/redismod
|
|
ports:
|
|
- '6379:6379'
|
|
web:
|
|
build: .
|
|
ports:
|
|
- "5000:5000"
|
|
volumes:
|
|
- .:/code
|
|
depends_on:
|
|
- redis
|