blob: a88e3b037f52aebc54ed5d732ce8755d83a27843 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
version: '3'
services:
nginx:
image: nginx
volumes:
- ./nginx.conf:/etc/nginx/conf.d/default.conf
- ./public:/public
ports:
- 80:80
environment:
TZ: Asia/Tokyo
restart: always
|