-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
37 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
version: '3.8' | ||
services: | ||
rmg_container: | ||
image: laxzal/arc:latest | ||
platform: linux/amd64 | ||
container_name: rmg_container | ||
volumes: | ||
# Mount a local directory to the container. Replace <local_path_to_mount> with your actual local directory path. | ||
# Ensure to use absolute paths. Examples of directory formats for different operating systems: | ||
# Windows: C:/Users/YourUsername/Documents/MyFolder | ||
# macOS: /Users/YourUsername/Documents/MyFolder | ||
# Linux: /home/YourUsername/Documents/MyFolder | ||
- <path-to-local-folder>:/home/rmguser/KMClass | ||
environment: | ||
# Set the mode of the container. Replace with either "interactive" or "non-interactive". | ||
- CONTAINER_MODE=interactive |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters