blob: 21c061c19f59860fd00e73f48876b320ab52abba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
version: '3'
services:
cgitize:
build:
context: .
environment:
# Every 3 hours:
SCHEDULE: '0 */3 * * *'
image: egortensin/cgitize:latest
logging:
driver: journald
restart: unless-stopped
volumes:
- ./examples/docker:/etc/cgitize:ro
- repositories:/mnt/cgitize
frontend:
build:
context: ./docker/frontend
image: egortensin/cgitize-frontend:latest
logging:
driver: journald
ports:
- '127.0.0.1:80:80'
restart: unless-stopped
volumes:
- repositories:/mnt/cgitize:ro
volumes:
repositories:
|