Hi all.
I am trying to start container from image created from Dockerfile orientdb-docker/2.1/Dockerfile at master · orientechnologies/orientdb-docker · GitHub . Overall when the image is build tar file with binaries is unpacked to /orientdb:
tar -xvzf orientdb-community-$ORIENTDB_VERSION.tar.gz -C /orientdb --strip-components=1
and then volumes mounted from the host are specified
VOLUME [“/orientdb/backup”, “/orientdb/databases”, “/orientdb/config”]
When I run the container with command:
$ docker run --entrypoint=“server.sh” -v /tmp/config:/orientdb/config -v /tmp/backup:/orientdb/backup -v /tmp/databases:/orientdb/databases orientdb/orientdb
I see in docker logs that file /orientdb/config/orientdb-server-config.xml is not present and because of this orientdb service does not start. Once I login to the container (exec -it container_id bash) the file is there. Based on the documentation in Volumes | Docker Docs all files present in the image in /orientdb/{backup,config,databases} upon containers start/creation should be copied to /tmp/{backup,config,databases}. In my case orientdb-server-config.xml is in the image used and visible on the host in /tmp/config and on the docker container after I login to it but not when it starts for the first time.
Can someone help me with this?
$ docker info
Containers: 33
Images: 590
Server Version: 1.9.0
Storage Driver: aufs
Root Dir: /var/vcap/store/docker/docker/aufs
Backing Filesystem: extfs
Dirs: 656
Dirperm1 Supported: true
Execution Driver: native-0.2
Logging Driver: json-file
Kernel Version: 3.19.0-30-generic
Operating System: Ubuntu 14.04.3 LTS
$ docker version
Client:
Version: 1.9.0
API version: 1.21
Go version: go1.4.3
Git commit: 76d6bc9
Built: Tue Nov 3 19:20:09 UTC 2015
OS/Arch: linux/amd64
Server:
Version: 1.9.0
API version: 1.21
Go version: go1.4.3
Git commit: 76d6bc9
Built: Tue Nov 3 19:20:09 UTC 2015
OS/Arch: linux/amd64
BR,
Rafal.