my-devops-client/stacks/hello-world/docker-compose.yml

14 lines
323 B
YAML

version: "3.3"
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"