blob: 5de78633e28bf7e4c0d8695da7b5f5a74c4ea61a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
name: cerrado
services:
app:
container_name: cerrado
restart: unless-stopped
build:
context: ../
dockerfile: contrib/Dockerfile
ports:
- "8080:8080"
volumes:
- /srv/git:/srv/git # set your scan folder here
# - ./config.scfg:/etc/cerrado.scfg:ro # load a custom config file
|