23 lines
398 B
YAML
23 lines
398 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
volumes:
|
|
- static-files:/usr/share/nginx/html
|
|
- webhooks-git-ssh:/root/.ssh
|
|
- webhooks-git-data:/etc/webhook/
|
|
|
|
webhooks-git:
|
|
build:
|
|
context: ./webhooks-git
|
|
dockerfile: Dockerfile
|
|
volumes:
|
|
- static-files:/etc/static-files
|
|
|
|
volumes:
|
|
static-files:
|
|
webhooks-git-ssh:
|
|
webhooks-git-data:
|
|
|