Sean Scott
Sean Scott
With `--debug`: ``` # finch vm init --debug DEBU[0000] Creating limactl command: ARGUMENTS: [ls -f {{.Status}} finch], LIMA_HOME: /Applications/Finch/lima/data DEBU[0000] Status of virtual machine: DEBU[0000] Creating limactl command: ARGUMENTS: [sudoers],...
``` # uname -v Darwin Kernel Version 21.4.0: Mon Feb 21 20:35:58 PST 2022; root:xnu-8020.101.4~2/RELEASE_ARM64_T6000 # sw_vers ProductName: macOS ProductVersion: 12.3 BuildVersion: 21E230 ```
The `transferring context: 537B` line suggests that all necessary files were not copied. That's usually because you're out of space on the `/var/log/docker` directory. Try: ``` df -h /var/lib ```...
@Amwidtf try running the commands I posted originally: * `docker system df` to see the space used by Docker's different object types * `docker builder prune` to remove old cache...
@ljkoy26-desktop the build error here is complaining about the host name `buildkitsandbox`: ``` [builder 3/4] RUN if [ "falsex" != 'truex' ]; then sed -e '/hard *memlock/s/^/#/g' -i /etc/security/limits.d/oracle-database-preinstall-21c.conf &&...
Without the compose specification, it's going to be hard to tell for sure, but I suspect you're mounting `/opt/oracle/oradata` to a directory on a Linux system, and permissions are not...
It this the same as https://github.com/oracle/docker-images/issues/2506?
> But executing the query twice does not remove the error. I read the original author's post as saying the error happened on the second execution. This may be an...
1. Ideally, you should build patches into a new image rather than apply them to an existing container. There's information on this here: https://github.com/oracle/docker-images/tree/main/OracleDatabase/SingleInstance/extensions/patching. 2. This is a different mindset/approach...
> for the volume-related question, will it work for the new container image or can I use the plug/unplug option there?? You can still unplug/plug as before. A free sample...