Skip to content

Instantly share code, notes, and snippets.

@rk76feWF
Created March 18, 2021 17:25
Show Gist options
  • Save rk76feWF/fe9a196f78fe5417de915b2ea8b4de27 to your computer and use it in GitHub Desktop.
Save rk76feWF/fe9a196f78fe5417de915b2ea8b4de27 to your computer and use it in GitHub Desktop.
Nginxの環境をDockerでサクッと実装
version: '3'
services:
nginx:
image: nginx:latest
ports:
- "8080:80"
volumes:
- ./public:/usr/share/nginx/html
working_dir: /usr/share/nginx/html
tty: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment