Closed gabrielrdrguez closed 6 years ago
I seem to be having the same issue on Windows 10 docker 18.03.0-ce
solved with named volumes
hope this will help !
at the end, this is not an issue related to this repo, the problem is that chmod
or chown
doesn't work on mounted volumes, but works like a charm using docker builtin named volumes
version: '2'
services:
oracle:
image: "oracle-db"
build:
context: ".."
dockerfile: ".docker/oracle.dockerfile"
env_file:
- ../.env
ports:
- "1521:1521"
- "8082:8080"
volumes:
- oracle-data:/u01/app/oracle
volumes:
oracle-data:
driver: local
$ sudo docker run -d -p 8088:8080 -p 1522:1521 -v /data/oracle:/u01/app/oracle sath89/oracle-12c
It doesn't seem to be related to the issue linked on the readme. I'm running on Ubuntu 16.04, docker 18.03.1-ce, and I also tried running with rancher 1.6 as the host's memory resource limit is 15953 MB It only happens if I map the volume, otherwise works just fine.