LanguageDevEnvironments

所属分类:COBOL编程
开发工具:Dockerfile
文件大小:22KB
下载次数:0
上传日期:2018-09-21 15:13:32
上 传 者sh-1993
说明:  Docker镜像和源代码的集合,用于为各种编程语言创建开发环境
(A collection of Docker images and source code to create development environments for various programming languages)

文件列表:
BASIC (0, 2018-09-21)
BASIC\Dockerfile (918, 2018-09-21)
BASIC\helloworld.bas (51, 2018-09-21)
COBOL (0, 2018-09-21)
COBOL\Dockerfile (295, 2018-09-21)
COBOL\helloworld.cob (262, 2018-09-21)
Erlang (0, 2018-09-21)
Erlang\Dockerfile (291, 2018-09-21)
Erlang\helloworld.erl (103, 2018-09-21)
Fortran (0, 2018-09-21)
Fortran\Dockerfile (293, 2018-09-21)
Fortran\helloworld.f90 (59, 2018-09-21)
Haskell (0, 2018-09-21)
Haskell\Dockerfile (301, 2018-09-21)
Haskell\helloworld.hs (31, 2018-09-21)
LICENSE (1071, 2018-09-21)
LISP (0, 2018-09-21)
LISP\Dockerfile (540, 2018-09-21)
LISP\helloworld.lisp (49, 2018-09-21)
ML (0, 2018-09-21)
ML\Dockerfile (354, 2018-09-21)
ML\helloworld.sml (23, 2018-09-21)
Pascal (0, 2018-09-21)
Pascal\Dockerfile (312, 2018-09-21)
Pascal\helloworld.pas (51, 2018-09-21)
Scala (0, 2018-09-21)
Scala\Dockerfile (311, 2018-09-21)
Scala\helloworld.scala (96, 2018-09-21)
... ...

# LanguageDevEnvironments A collection of Docker images and source code to create development environments for various programming languages To download and use any of the language dev images go to the respective directory and follow the documentation found there ## Supported Languages [Fortran](https://github.com/dgisolfi/LanguageDevEnvironments/tree/master/Fortran) using the GFortran compiler [COBOL](https://github.com/dgisolfi/LanguageDevEnvironments/tree/master/COBOL) using the GnuCOBOL compiler [BASIC](https://github.com/dgisolfi/LanguageDevEnvironments/tree/master/BASIC) using the FreeBASIC compiler [Pascal](https://github.com/dgisolfi/LanguageDevEnvironments/tree/master/Pascal) using the FreePascal compiler [Scala](https://github.com/dgisolfi/LanguageDevEnvironments/tree/master/Scala) using the Scalac compiler which generates Java bytecode [LISP](https://github.com/dgisolfi/LanguageDevEnvironments/tree/master/LISP) using the Steel Bank Common Lisp compiler [ML](https://github.com/dgisolfi/LanguageDevEnvironments/tree/master/ML) using the Standard ML of New Jersey Compiler [Erlang](https://github.com/dgisolfi/LanguageDevEnvironments/tree/master/Erlang) using the Erlang compiler [Haskell](https://github.com/dgisolfi/LanguageDevEnvironments/tree/master/Haskell) using the Glasgow Haskell Compiler ## Docker Installation *The following is an installation guide for Docker and on an Ubuntu host machine for guides on other distros and operating systems refer to* [here](https://docs.docker.com/install/) First, install the latest version of Docker by running: ```bash sudo apt-get install Docker ``` After installation is complete, test the installation by running: ```bash docker ps -a ``` If Docker is working properly, the output should show what containers are currently running on your host (none will be running if Docker was just installed). A common issue is not having the proper permissions to run Docker. If running the above command yields a result similar to "permission denied", run the following to resolve this: ```bash # Add Docker as a group sudo groupadd Docker # Add yourself to the group sudo usermod -aG Docker ``` Docker should now be set up.

近期下载者

相关文件


收藏者