You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
653 B
25 lines
653 B
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:
|
|
- "./_docker_mnt/_postgres_data:/var/lib/postgresql/data"
|
|
environment:
|
|
- "POSTGRES_USER=${DB_USER}"
|
|
- "POSTGRES_PASSWORD=${DB_PASS}"
|
|
- "POSTGRES_DB=${DB_NAME}"
|