mirror of
https://github.com/elyby/chrly.git
synced 2024-12-24 05:59:54 +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
|