Files
chopin-frontend/docker-compose.yml

18 lines
396 B
YAML

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
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
volumes:
subsonics-frontend: