├── .gitignore ├── Dockerfile ├── README.md ├── container ├── GitHub-Mark-32px.png ├── httpd.conf ├── index.html └── webinst └── run.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.deb 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderfefelov/docker-1c-ws/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderfefelov/docker-1c-ws/HEAD/README.md -------------------------------------------------------------------------------- /container/GitHub-Mark-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderfefelov/docker-1c-ws/HEAD/container/GitHub-Mark-32px.png -------------------------------------------------------------------------------- /container/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderfefelov/docker-1c-ws/HEAD/container/httpd.conf -------------------------------------------------------------------------------- /container/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderfefelov/docker-1c-ws/HEAD/container/index.html -------------------------------------------------------------------------------- /container/webinst: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | /opt/1C/v8.3/x86_64/webinst $@ 4 | -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderfefelov/docker-1c-ws/HEAD/run.sh --------------------------------------------------------------------------------