ktvmanager/docker-compose.yml

31 lines
643 B
YAML
Raw Normal View History

2021-02-13 13:14:15 +00:00
version: "3"
2021-02-06 16:33:42 +00:00
services:
backend:
build:
context: .
dockerfile: .dockerfile
image: "karl0ss/bblbtv_dns-backend"
2021-03-12 13:56:26 +00:00
volumes:
- ./SQL/:/docker-entrypoint-initdb.d
2021-02-06 16:33:42 +00:00
ports:
- "3001:3001"
2021-03-06 09:24:10 +00:00
environment:
2021-03-12 18:44:42 +00:00
- DBHOST=vps.k-world.me.uk
2021-03-06 09:35:05 +00:00
- DBUSER=root
2021-03-18 10:50:15 +00:00
- DBPASS=Grd555269
2021-03-06 09:24:10 +00:00
- DATABASE=BBLB_DNS
2021-03-18 10:50:15 +00:00
- DBPORT=3306
2021-03-12 18:44:42 +00:00
frontend:
build:
context: ./client
dockerfile: Dockerfile.prod
2021-09-14 13:05:07 +00:00
# dockerfile: .dockerfile
2021-03-12 18:44:42 +00:00
image: "karl0ss/bblbtv_dns-frontend"
ports:
- "6969:6969"
environment:
- URL=vps.k-world.me.uk
- PORT=6969
links:
2021-03-18 10:50:15 +00:00
- "backend"