programm-webhook/docker-compose.yml

25 lines
425 B
YAML

version: '3.8'
services:
nginx:
image: nginx:latest
ports:
- "80:80"
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: