18 lines
300 B
YAML
18 lines
300 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
app:
|
|
image: nginx:alpine
|
|
ports:
|
|
- "8082:80"
|
|
environment:
|
|
- APP_ENV=${APP_ENV:-production}
|
|
volumes:
|
|
- ./html:/usr/share/nginx/html:ro
|
|
restart: unless-stopped
|
|
|
|
# Add more services as needed
|
|
# networks:
|
|
# default:
|
|
# driver: bridge
|