Files
Docker/docker-compose.template.yml
T
2022-08-06 16:21:43 +02:00

24 lines
550 B
YAML

version: '3'
services:
hyperpipe-frontend:
image: hyperpipe-frontend
container_name: hyperpipe-frontend
build:
context: ./Hyperpipe
args:
api: hyperpipeapi.onrender.com
pipedapi: pipedapi.kavin.rocks
restart: unless-stopped
ports:
- '8080:80'
hyperpipe-backend:
image: hyperpipe-backend
container_name: hyperpipe-backend
build:
context: ./hyperpipe-backend
args:
proxy: hyperpipe-proxy.onrender.com
restart: unless-stopped
ports:
- '3000:3000'