You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
465 B
17 lines
465 B
# Version 2 is the latest that is supported by docker-compose in |
|
# Ubuntu Xenial. |
|
version: '2' |
|
|
|
services: |
|
gerritbot: |
|
image: docker.io/opendevorg/gerritbot:latest |
|
network_mode: host |
|
user: "{{ gerritbot_uid }}:{{ gerritbot_gid }}" |
|
restart: always |
|
logging: |
|
driver: syslog |
|
options: |
|
tag: "docker-gerritbot" |
|
volumes: |
|
# This contains the main config, channel config, and ssh key |
|
- /etc/gerritbot:/etc/gerritbot:ro
|
|
|