mirror of
https://github.com/elyby/chrly.git
synced 2024-12-22 21:19:55 +05:30
21 lines
316 B
YAML
21 lines
316 B
YAML
version: '2'
|
|
services:
|
|
app:
|
|
build: .
|
|
links:
|
|
- redis
|
|
|
|
web:
|
|
build: ./docker/nginx
|
|
ports:
|
|
- "80:80"
|
|
links:
|
|
- app
|
|
volumes_from:
|
|
- app
|
|
|
|
redis:
|
|
image: redis:3.0
|
|
volumes:
|
|
- ./data/:/data
|