11 lines
304 B
YAML
11 lines
304 B
YAML
services:
|
|
spotify-clone:
|
|
image: git.khoavo.myds.me/vndangkhoa/spotify-clone:latest
|
|
container_name: spotify-clone
|
|
restart: always
|
|
network_mode: bridge # Synology often prefers explicit bridge or host
|
|
ports:
|
|
- "3110:3000" # Web UI
|
|
|
|
volumes:
|
|
- ./data:/app/backend/data
|