mirror of
https://github.com/JuLi0n21/pwa-player.git
synced 2026-04-19 15:30:05 +00:00
change script to call docker compose
This commit is contained in:
25
docker-compose.yml
Normal file
25
docker-compose.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
backend:
|
||||
image: proxy
|
||||
build:
|
||||
context: ./proxy
|
||||
container_name: proxy-container
|
||||
ports:
|
||||
- "5002:80"
|
||||
volumes:
|
||||
- ./data:/app/data
|
||||
restart: always
|
||||
depends_on:
|
||||
- frontend
|
||||
|
||||
frontend:
|
||||
image: frontend
|
||||
build:
|
||||
context: ./frontend
|
||||
container_name: frontend-container
|
||||
ports:
|
||||
- "5001:80"
|
||||
restart: always
|
||||
|
||||
Reference in New Issue
Block a user