mirror of
https://github.com/cgzirim/seek-tune.git
synced 2025-12-18 09:24:19 +00:00
22 lines
No EOL
455 B
YAML
22 lines
No EOL
455 B
YAML
version: '3.1'
|
|
services:
|
|
seek-tune:
|
|
image: 'seek-tune'
|
|
build: .
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8080:5000
|
|
env_file: .env
|
|
environment:
|
|
DB_TYPE: $DB_TYPE
|
|
DB_USER: $DB_USER
|
|
DB_PASSWORD: $DB_PASSWORD
|
|
DB_NAME: $DB_NAME
|
|
DB_HOST: $DB_HOST
|
|
DB_PORT: $DB_PORT
|
|
|
|
REACT_APP_BACKEND_URL: $REACT_APP_BACKEND_URL
|
|
|
|
volumes:
|
|
- ./songs:/home/seek-tune/songs
|
|
- ./db:/home/seek-tune/db |