mirror of
https://github.com/netfun2000/docker-php-nginx.git
synced 2026-04-22 00:29:10 +08:00
21 lines
322 B
YAML
21 lines
322 B
YAML
appdata:
|
|
image: debian:jessie
|
|
volumes:
|
|
- ./src:/var/www/html
|
|
|
|
fpm:
|
|
build: .
|
|
volumes_from:
|
|
- appdata
|
|
|
|
nginx:
|
|
image: nginx:1.9
|
|
links:
|
|
- fpm
|
|
volumes:
|
|
- ./config/nginx.conf:/etc/nginx/conf.d/app.conf:ro
|
|
volumes_from:
|
|
- appdata
|
|
ports:
|
|
- 80:80
|