@@ -37,40 +37,6 @@ input file, and internally ARC treats them the same.
3737Other than the file name, the difference is that the restart file
3838was automatically generated.
3939
40- Running via Docker
41- ^^^^^^^^^^^^^^^^^^
42-
43- The published Docker image includes ARC and RMG along with convenience entrypoints.
44- Bind-mount your working directory and pass an input file path that exists inside
45- the container. For best write access on bind mounts, pass your host UID/GID as
46- ``PUID ``/``PGID `` (the entrypoint remaps the ``mambauser `` account).
47-
48- Run ARC non-interactively::
49-
50- docker run --rm \
51- -v "$PWD:/work" -w /work \
52- -e PUID=$(id -u) -e PGID=$(id -g) \
53- laxzal/arc:latest arc my_case/input.yml
54-
55- Run RMG non-interactively::
56-
57- docker run --rm \
58- -v "$PWD:/work" -w /work \
59- -e PUID=$(id -u) -e PGID=$(id -g) \
60- laxzal/arc:latest rmg my_case/input.py
61-
62- Open an interactive shell::
63-
64- docker run --rm -it \
65- -v "$PWD:/work" -w /work \
66- -e PUID=$(id -u) -e PGID=$(id -g) \
67- laxzal/arc:latest
68-
69- If you need a fully manual invocation inside the container, use
70- ``micromamba run -n arc_env python /home/mambauser/Code/ARC/ARC.py input.yml ``.
71- For job submission, the scheduler client tools must be available in the container
72- or accessed via SSH on a remote host.
73-
7440
7541A (very) simple input file might look like this::
7642
0 commit comments