Make sure nobody is running a docker container before restarting the service...
$ ssh [email protected]
$ cvmfs_server transaction test.galaxyproject.org
$ systemctl restart docker.service
Make sure nobody is running a docker container before restarting the service...
$ ssh [email protected]
$ cvmfs_server transaction test.galaxyproject.org
$ systemctl restart docker.service
import simplejson | |
import sqlalchemy | |
from sqlalchemy import String | |
from sqlalchemy.ext.mutable import Mutable | |
class JSONEncodedObj(sqlalchemy.types.TypeDecorator): | |
"""Represents an immutable structure as a json-encoded string.""" | |
impl = String |