35 lines
783 B
YAML
35 lines
783 B
YAML
version: "3"
|
|
|
|
services:
|
|
backend:
|
|
build:
|
|
context: .
|
|
dockerfile: .dockerfile
|
|
image: "karl0ss/ktvmanager"
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
volumes:
|
|
- ./SQL/:/docker-entrypoint-initdb.d
|
|
ports:
|
|
- "3001:3001"
|
|
environment:
|
|
- DBHOST=vps.k-world.me.uk
|
|
- DBUSER=root
|
|
- DBPASS=Grd555269
|
|
- DATABASE=BBLB_DNS
|
|
- DBPORT=3306
|
|
- TORSSRV=host.docker.internal
|
|
- TORSPWD=KarlMax
|
|
# frontend:
|
|
# build:
|
|
# context: ./client
|
|
# dockerfile: Dockerfile.prod
|
|
# # dockerfile: .dockerfile
|
|
# image: "karl0ss/bblbtv_dns-frontend"
|
|
# ports:
|
|
# - "6969:6969"
|
|
# environment:
|
|
# - URL=vps.k-world.me.uk
|
|
# - PORT=6969
|
|
# links:
|
|
# - "backend" |