11 lines
252 B
Django/Jinja
11 lines
252 B
Django/Jinja
services:
|
|
website:
|
|
image: nginx:alpine
|
|
container_name: website
|
|
restart: unless-stopped
|
|
ports:
|
|
- "{{ website_port }}:80"
|
|
volumes:
|
|
- ./html:/usr/share/nginx/html:ro
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
|