9 lines
172 B
YAML
9 lines
172 B
YAML
services:
|
|
web:
|
|
image: nginx:alpine
|
|
ports:
|
|
- "45554:80"
|
|
volumes:
|
|
- ./entrypoint.sh:/entrypoint.sh:ro
|
|
entrypoint: ["/bin/sh", "/entrypoint.sh"]
|