Replies: 1 comment
-
So after testing, I've found a solution. When /data is set in the docker-compose file nothing happen but when I set the path to /app/Manga, I found that the data are transfer to /data. So I set Two path for the same dir outside the container and it work.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I search a lot but I c'ant find a solution for this problem.
When I download a Manga, the data are not store in the container /data but in app/Manga and I can't access the data.
Here my docker compose. Do you know how to change the path for kaizoku?
` kaizoku:
container_name: kaizoku
image: ghcr.io/oae/kaizoku:latest
environment:
- DATABASE_URL=postgresql://kaizoku:kaizoku@db:5432/kaizoku
- KAIZOKU_PORT=3000
- REDIS_HOST=redis
- REDIS_PORT=6379
- PUID=1000
- PGID=1001
- UMASK=002
- TZ=Europe/Paris
networks:
- mynetwork
volumes:
- /T7_Gama/data/manga:/data
- ./kaizoku:/config
- ./kaizoku/logs:/logs
depends_on:
db:
condition: service_healthy
redis:
condition: service_started
ports:
- 3010:3000
restart: unless-stopped
redis:
image: redis:7-alpine
ports:
- 6379:6379
networks:
- mynetwork
volumes:
- ./redis:/data
restart: unless-stopped
db:
image: postgres:alpine
networks:
- mynetwork
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U kaizoku']
interval: 5s
timeout: 5s
retries: 5
environment:
- POSTGRES_USER=kaizoku
- POSTGRES_DB=kaizoku
- POSTGRES_PASSWORD=kaizoku
volumes:
- ./db:/var/lib/postgresql/dataU
restart: unless-stopped`
Thanks for your help
Beta Was this translation helpful? Give feedback.
All reactions