This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
|
version: '3.5'
|
|
services:
|
|
nginx:
|
|
build: './nginx'
|
|
image: 'nginx-certbot:stable-alpine'
|
|
ports:
|
|
- '80:80'
|
|
- '443:443'
|
|
networks:
|
|
- 'nginx'
|
|
volumes:
|
|
- 'certs:/etc/letsencrypt'
|
|
- './config:/etc/nginx/conf.d'
|
|
|
|
networks:
|
|
nginx:
|
|
|
|
volumes:
|
|
certs:
|