28 lines
485 B
YAML
28 lines
485 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:
|
|
external: true
|
|
webhooks-git-ssh:
|
|
external: true
|
|
webhooks-git-data:
|
|
external: true
|
|
|