Search found 4 matches
- Fri Mar 26, 2021 6:47 am
- Forum: V7.6.x Public Release Windows/Linux/MacOS X
- Topic: Put working data in Docker volume?
- Replies: 7
- Views: 3597
Re: Put working data in Docker volume?
Thank you for the hint! Ich looked at these configurations and in the end they just do the same as I do - persist the working directory. I'll port a log of a fresh startup after the server completed 3%. It was just a reboot of the container: fah_1 | 06:40:55:Caught signal SIGTERM(15) on PID 1 fah_1 ...
- Tue Mar 23, 2021 9:27 pm
- Forum: V7.6.x Public Release Windows/Linux/MacOS X
- Topic: Put working data in Docker volume?
- Replies: 7
- Views: 3597
Re: Put working data in Docker volume?
This is located in the volumes as well and is read by FAHClient correctly.
- Tue Mar 23, 2021 2:27 pm
- Forum: V7.6.x Public Release Windows/Linux/MacOS X
- Topic: Put working data in Docker volume?
- Replies: 7
- Views: 3597
Re: Put working data in Docker volume?
Thank you very much for your reply!
To my mind, the .db-files are already mounted in the volume:
because the volume goes to
So this shouldn't be a problem?
To my mind, the .db-files are already mounted in the volume:
Code: Select all
/var/lib/fahclient/work/client.db-journal
/var/lib/fahclient/work/client.db
Code: Select all
/var/lib/fahclient/
- Mon Mar 22, 2021 9:17 am
- Forum: V7.6.x Public Release Windows/Linux/MacOS X
- Topic: Put working data in Docker volume?
- Replies: 7
- Views: 3597
Put working data in Docker volume?
Hey there, I am running FAHClient in docker image. I want to restart, stop or delete the container as desired and keep the working data in container. I tried to put the work files in a volume, but after restart fah starts from 0%. My Dockerfile: FROM debian:stable-slim ENV FAH_VERSION_MAJOR=7.6 ENV ...