|
version: '3.8'
|
|
|
|
services:
|
|
web-test:
|
|
image: nginxdemos/hello:plain-text
|
|
container_name: hello_world_app
|
|
restart: always
|
|
ports:
|
|
- "127.0.0.1:8080:80" # Exposed only to localhost for Nginx reverse proxy
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3" |