Last active
December 15, 2023 07:31
-
-
Save comficker/7f163c315dc0bb81bebd14d963d0165d to your computer and use it in GitHub Desktop.
docker compose for static web yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.7' | |
services: | |
web: | |
image: nginx:alpine | |
ports: | |
- "8000:80" | |
volumes: | |
- ./app:/usr/share/nginx/html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment