blob: bc71c040543f0084ca541e9877fb6125f67c9c81 (
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
|
services:
cgitize:
build:
context: .
dockerfile: docker/Dockerfile
environment:
# Every 3 hours:
SCHEDULE: '0 */3 * * *'
image: egortensin/cgitize:latest
restart: unless-stopped
volumes:
- ./examples/docker:/etc/cgitize:ro
- repositories:/mnt/cgitize
frontend:
build:
context: ./docker/frontend
image: egortensin/cgitize-frontend:latest
ports:
- '127.0.0.1:80:80'
restart: unless-stopped
volumes:
- repositories:/mnt/cgitize:ro
volumes:
repositories:
|