42 lines
566 B
YAML
42 lines
566 B
YAML
version: '3'
|
|
|
|
services:
|
|
|
|
nginx:
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
- ../volume/www:/home/www:cached
|
|
restart: "no"
|
|
|
|
php:
|
|
volumes:
|
|
- ../volume/www:/home/www:cached
|
|
restart: "no"
|
|
|
|
postgres:
|
|
ports:
|
|
- "5432:5432"
|
|
restart: "no"
|
|
|
|
mongo:
|
|
ports:
|
|
- "27017:27017"
|
|
restart: "no"
|
|
|
|
elasticsearch:
|
|
ports:
|
|
- "9200:9200"
|
|
restart: "no"
|
|
|
|
store-php:
|
|
volumes:
|
|
- ../volume/www:/home/www:cached
|
|
restart: "no"
|
|
|
|
store-mysql:
|
|
ports:
|
|
- "3306:3306"
|
|
restart: "no"
|