by Devin Yang
(This article was automatically translated.)

Published - 6 years ago ( Updated - 6 years ago )

On my Synolog Nas, a strange logging driver called db was run by default.
How to modify it to a normal json-file?

In Synolog's Nas, his Daemon config file is special, and it is placed in the /var/packages/Docker/etc/ directory.
Called dockerd.json.

1. Enter the editor
vi /var/packages/Docker/etc/dockerd.json
Add "log-driver": "json-file"


2. Restart Docker Daemon
synoservice --restart pkgctl-Docker

3. View the default Logging driver settings
docker info|grep Logging


Fourth, the actual test function
docker-comose logs -f

I can see it normally, there is something...


Supplement: I often use commands on synology
For example, to list all the service names on the Synology NAS.
synoservice --list
To find Docker, you can query in uppercase
synoservice --list|grep Docker
pkgctl-Docker

If you want to overload nginx settings, you can use
synoservice --reload nginx

Use help to view related settings
synoservice --help

Tags: docker Synology

Devin Yang

Feel free to ask me, if you don't get it.:)

No Comment

Post your comment

Login is required to leave comments

Similar Stories


docker

Storage and retrieval of Docker image

How to archive the docker image into a tar file and load back the docker image. We can use docker save and docker load.

docker

D-Laravel on .env and docker-compsoe small classroom

This article introduces why the docker-compose ps official command cannot list all the services in use when we use D-Laravel's .env to load multiple yml files. But the ./console ps on D-Laravel can indeed display normally, so how can the official docker-compose command be used to have the same effect?

docker,container,laravel

Manually update the full record of D-Laravel's user id on Nas

This article fully records how I update the uid of the fpm image on my Nas. In this article, you should learn to query related concepts such as container id and commit container.