mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-04 08:40:07 -06:00
20 lines
406 B
YAML
Executable File
20 lines
406 B
YAML
Executable File
version: "3"
|
|
|
|
services:
|
|
webserver:
|
|
image: nginx:latest
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
restart: always
|
|
volumes:
|
|
- ./nginx/conf.d/:/etc/nginx/conf.d/:ro
|
|
- ./certbot/www/:/var/www/certbot/:ro
|
|
certbot:
|
|
image: certbot/certbot:latest
|
|
volumes:
|
|
- ./certbot/www/:/var/www/certbot/:rw
|
|
- ./certbot/conf/:/etc/letsencrypt/:rw
|
|
depends_on:
|
|
- webserver
|