Projekt

Obecné

Profil

Stáhnout (1006 Bajtů) Statistiky
| Větev: | Revize:
1
version: "3.2"
2
services:
3
       database:
4
                volumes:
5
                         - /database:/data/db
6
       nginx:
7
              ports: 
8
                     - "443:443"
9
              volumes: 
10
                     # TODO: set certificate here
11
                     # https://github.com/acmesh-official/acme.sh
12
                     #
13
                     #- /acme-1:/root/.acme.sh/heatmap.zcu.cz
14
                     #- /acme-2:/root/.acme.sh/www.heatmap.zcu.cz
15
                     #
16
                     - /etc/certificate:/certificate
17
                     - ./docker/nginx/sites:/etc/nginx/sites-available
18
                     - /logs/nginx:/var/log/nginx
19
       crawler:
20
              volumes: 
21
                     - /logs/crawler:/src/CrawlerLogs
22
                     - /crawler/data:/src/CrawledData
23
                     - /crawler/processed_data:/src/ProcessedData
24
       php-fpm:
25
              environment: 
26
                         - APP_ENV=prod
27
                         - APP_DEBUG=0
(4-4/5)