Files
webhook-everything/docker-compose.yml
Samuel Pua b3644f05e6
All checks were successful
Webhook-Everything/Webhook-Everything/pipeline/head This commit looks good
Feat(telegram): Added new controller to handle help and show
2022-09-10 00:40:10 +08:00

26 lines
653 B
YAML

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}"