Feat(Initial): Initial Go codebase
All checks were successful
Webhook-Everything/Webhook-Everything/pipeline/head This commit looks good

This commit is contained in:
2022-05-29 00:06:52 +08:00
parent f31bc0cd52
commit 53829a2788
27 changed files with 1489 additions and 0 deletions

25
docker-compose.yml Normal file
View File

@@ -0,0 +1,25 @@
version: '3'
services:
#######################################
# Webhook Everything
#######################################
webhook-everythin:
restart: always
build:
context: .
dockerfile: docker/Dockerfile
ports:
- "127.0.0.1:8006:8000"
#######################################
# Postgres server
#######################################
postgres-webhook-everything:
image: postgres
restart: always
volumes:
- "./_postgres_data:/var/lib/postgresql/data"
environment:
- "POSTGRES_USER=${DB_USER}"
- "POSTGRES_PASSWORD=${DB_PASS}"
- "POSTGRES_DB=${DB_NAME}"