Updated Dockerfile to remove USER line, as that prevents proper file mapping writing. Updated compose file to map to /app/data where the database is supposed to be.
10 lines
186 B
YAML
10 lines
186 B
YAML
services:
|
|
freetubesync:
|
|
image: freetubesync
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./docker_data:/app/data
|