Files
time-until/docker-compose.yml
Space-Banane 60909913a5
All checks were successful
Build App / build-android (push) Successful in 7m6s
Build App / build-web (push) Successful in 40s
Build App / release (push) Successful in 31s
Add Docker configuration and entrypoint script for Nginx web service
2026-03-10 20:44:00 +01:00

9 lines
172 B
YAML

services:
web:
image: nginx:alpine
ports:
- "45554:80"
volumes:
- ./entrypoint.sh:/entrypoint.sh:ro
entrypoint: ["/bin/sh", "/entrypoint.sh"]