mirror of
https://github.com/netfun2000/docker-php-nginx.git
synced 2026-08-18 00:17:29 +08:00
20 lines
262 B
YAML
20 lines
262 B
YAML
appdata:
|
|
build: .
|
|
|
|
fpm:
|
|
build: ./fpm
|
|
volumes_from:
|
|
- appdata
|
|
|
|
nginx:
|
|
build: ./nginx
|
|
links:
|
|
- fpm
|
|
volumes_from:
|
|
- appdata
|
|
ports:
|
|
- 80:80
|
|
environment:
|
|
- UPSTREAM_HOST=fpm
|
|
- UPSTREAM_PORT=9000
|