mirror of
https://github.com/elyby/chrly.git
synced 2024-11-14 09:16:23 +05:30
15 lines
319 B
YAML
15 lines
319 B
YAML
# This file can be used to start up necessary services.
|
|
# Copy it into the docker-compose.yml:
|
|
# > cp docker-compose.dev.yml docker-compose.yml
|
|
# And then run it:
|
|
# > docker-compose up -d
|
|
|
|
version: '2'
|
|
services:
|
|
redis:
|
|
image: redis:4.0-32bit
|
|
ports:
|
|
- "6379:6379"
|
|
volumes:
|
|
- ./data/redis:/data
|