Feat(Initial): Initial Go codebase
All checks were successful
Webhook-Everything/Webhook-Everything/pipeline/head This commit looks good
All checks were successful
Webhook-Everything/Webhook-Everything/pipeline/head This commit looks good
This commit is contained in:
25
docker-compose.yml
Normal file
25
docker-compose.yml
Normal 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}"
|
||||
Reference in New Issue
Block a user