mirror of
https://github.com/wahyd4/you-music.git
synced 2026-08-09 13:16:30 +10:00
22 lines
504 B
Plaintext
22 lines
504 B
Plaintext
# Docker Compose Override Example
|
|
#
|
|
# To use SQLite instead of PostgreSQL in local development:
|
|
# 1. Copy this file: cp docker-compose.override.yml.example docker-compose.override.yml
|
|
# 2. Run: docker-compose up -d
|
|
#
|
|
# Note: docker-compose.override.yml is in .gitignore and won't be committed
|
|
|
|
version: '3.8'
|
|
|
|
services:
|
|
# Disable postgres service
|
|
postgres:
|
|
profiles:
|
|
- disabled
|
|
|
|
# Override youmusic to use SQLite
|
|
youmusic:
|
|
environment:
|
|
- DB_TYPE=sqlite
|
|
depends_on: []
|