Version 1.3.0 - Ajout de Docker

This commit is contained in:
2025-10-04 17:07:05 +02:00
parent ea9cf2ce42
commit d06c758763
6 changed files with 50 additions and 60 deletions

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
version: "3.9"
services:
subsonics-frontend:
build:
context: . # dossier contenant ton Dockerfile et ton code
dockerfile: Dockerfile
container_name: subsonics-frontend
ports:
- "4001:4001"
volumes:
- subsonics-frontend:/app/dist
restart: unless-stopped
volumes:
subsonics-frontend: