mirror of
https://github.com/JuLi0n21/pwa-player.git
synced 2026-04-19 15:30:05 +00:00
24 lines
387 B
YAML
24 lines
387 B
YAML
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
|
|
|