2019-09-24 07:40:59 +01:00
|
|
|
# CORE
|
2013-08-29 15:21:13 +01:00
|
|
|
|
|
|
|
CORE: Common Open Research Emulator
|
2016-10-23 02:14:16 +01:00
|
|
|
|
2022-01-11 19:06:06 +00:00
|
|
|
Copyright (c)2005-2022 the Boeing Company.
|
2016-10-23 02:14:16 +01:00
|
|
|
|
2013-08-29 15:21:13 +01:00
|
|
|
See the LICENSE file included in this distribution.
|
|
|
|
|
2022-09-28 20:11:24 +01:00
|
|
|
# DOCKER SETUP
|
2016-10-23 02:14:16 +01:00
|
|
|
|
2013-08-29 15:21:13 +01:00
|
|
|
|
2022-09-28 20:10:49 +01:00
|
|
|
```shell
|
|
|
|
git clone https://gitea.olympuslab.net/afonso/core-extra.git
|
2021-11-16 20:52:31 +00:00
|
|
|
|
2022-09-28 20:10:49 +01:00
|
|
|
cd core-extra
|
2021-11-16 20:52:31 +00:00
|
|
|
|
2022-09-28 20:10:49 +01:00
|
|
|
# build image
|
|
|
|
sudo docker build -t core .
|
|
|
|
|
|
|
|
# start container
|
|
|
|
sudo docker run -itd --name core -e DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix:rw --privileged --restart unless-stopped core
|
|
|
|
|
|
|
|
# enable xhost access to the root user
|
|
|
|
xhost +local:root
|
|
|
|
# launch core-gui
|
|
|
|
sudo docker exec -it core core-gui
|
|
|
|
|
|
|
|
|
|
|
|
#TO RUN ANY OTHER COMMAND
|
|
|
|
sudo docker exec -it core COMAND_GOES_HERE
|
2021-11-16 20:52:31 +00:00
|
|
|
```
|
|
|
|
|
2020-04-09 22:34:52 +01:00
|
|
|
## Documentation & Support
|
2013-08-29 15:21:13 +01:00
|
|
|
|
2020-04-09 22:34:52 +01:00
|
|
|
We are leveraging GitHub hosted documentation and Discord for persistent
|
|
|
|
chat rooms. This allows for more dynamic conversations and the
|
2018-05-02 16:50:38 +01:00
|
|
|
capability to respond faster. Feel free to join us at the link below.
|
2013-08-29 15:21:13 +01:00
|
|
|
|
2020-04-09 22:34:52 +01:00
|
|
|
* [Documentation](https://coreemu.github.io/core/)
|
|
|
|
* [Discord Channel](https://discord.gg/AKd7kmP)
|