27 lines
608 B
YAML
27 lines
608 B
YAML
|
services:
|
||
|
ci-template:
|
||
|
image: woodpeckerci/woodpecker-server
|
||
|
restart: unless-stopped
|
||
|
depends_on: []
|
||
|
env_file:
|
||
|
- ci.common.env
|
||
|
environment:
|
||
|
WOODPECKER_DATABASE_DRIVER: mysql
|
||
|
volumes: []
|
||
|
agent-template:
|
||
|
image: woodpeckerci/woodpecker-agent
|
||
|
restart: unless-stopped
|
||
|
depends_on: []
|
||
|
command: agent
|
||
|
env_file:
|
||
|
- agent.common.env
|
||
|
environment: {}
|
||
|
volumes:
|
||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||
|
db-template:
|
||
|
image: mariadb
|
||
|
restart: unless-stopped
|
||
|
environment:
|
||
|
MARIADB_RANDOM_ROOT_PASSWORD: "yes"
|
||
|
volumes: []
|