You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

32 lines
595 B

version: '2.1'
services:
mongo:
image: mongo:latest
ports:
- "127.0.0.1:27017:27017"
volumes:
- ~/dplayer/db:/data/db
redis:
image: redis:latest
ports:
- "127.0.0.1:6379:6379"
web:
build: .
links:
- mongo
- redis
depends_on:
- mongo
- redis
ports:
- 1207:1207
environment:
REDIS_HOST: "redis"
REDIS_PORT: 6379
MONGO_HOST: "mongo"
MONGO_PORT: 27017
MONGO_DATABASE: "danmaku"
volumes:
- ~/dplayer/logs:/usr/src/app/logs
- ~/dplayer/pm2logs:/root/.pm2/logs