blob: 845c69b5f925346555c21e07ba8716b216825bfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# example docker-compose.yaml
version: "3.7"
services:
fourget:
image: luuul/4get:latest
restart: unless-stopped
environment:
<<<<<<< HEAD
- FOURGET_VERSION=6
- FOURGET_SERVER_NAME=4get.itinerariummentis.org
=======
- FOURGET_SERVER_NAME=4get.ca
>>>>>>> 0b68d6b2a9928d1b9dae389fbf5b95056e678be0
ports:
- "80:80"
- "443:443"
volumes:
- /etc/letsencrypt/live/domain.tld:/etc/4get/certs
# mount custom banners and captcha
- ./banners:/var/www/html/4get/banner
- ./captcha:/var/www/html/4get/data/captcha
|