20 lines
383 B
YAML
20 lines
383 B
YAML
services:
|
|
app:
|
|
build: ./app
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=Asia/Shanghai
|
|
|
|
nginx:
|
|
image: nginx:alpine
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- ./nginx/nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
|
- ./nginx/html:/usr/share/nginx/html:ro
|
|
depends_on:
|
|
- app
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=Asia/Shanghai
|