Skip to content

Instantly share code, notes, and snippets.

@comficker
Last active December 15, 2023 07:31
Show Gist options
  • Save comficker/7f163c315dc0bb81bebd14d963d0165d to your computer and use it in GitHub Desktop.
Save comficker/7f163c315dc0bb81bebd14d963d0165d to your computer and use it in GitHub Desktop.
docker compose for static web yaml
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