You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
286 B
YAML
17 lines
286 B
YAML
2 years ago
|
services:
|
||
|
redis:
|
||
|
image: redislabs/redismod
|
||
|
ports:
|
||
|
- '6379:6379'
|
||
|
web:
|
||
|
build:
|
||
|
context: .
|
||
|
target: dev-envs
|
||
|
stop_signal: SIGINT
|
||
|
ports:
|
||
|
- '8000:8000'
|
||
|
volumes:
|
||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||
|
depends_on:
|
||
|
- redis
|