initial commit
This commit is contained in:
3
.devcontainer/Dockerfile
Normal file
3
.devcontainer/Dockerfile
Normal file
@@ -0,0 +1,3 @@
|
||||
FROM tomoyanonymous/latex-remote-container-acmart:latest
|
||||
|
||||
CMD ["/bin/bash"]
|
||||
17
.devcontainer/devcontainer.json
Normal file
17
.devcontainer/devcontainer.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "latex-in-docker-on-vscode",
|
||||
"dockerComposeFile": "docker-compose.yml",
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
"james-yu.latex-workshop",
|
||||
],
|
||||
"settings": {
|
||||
"terminal.integrated.shell": "/bin/bash"
|
||||
},
|
||||
}
|
||||
},
|
||||
"service": "texlive-ja",
|
||||
"workspaceFolder": "/workdir",
|
||||
"shutdownAction": "stopCompose"
|
||||
}
|
||||
15
.devcontainer/docker-compose.yml
Normal file
15
.devcontainer/docker-compose.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
version: "3"
|
||||
|
||||
services:
|
||||
texlive-ja:
|
||||
# build: .
|
||||
image: tomoyanonymous/latex-remote-container-acmart:latest
|
||||
environment:
|
||||
SHELL: "/bin/bash"
|
||||
command: sleep infinity
|
||||
volumes:
|
||||
- ../:/workdir
|
||||
- ../.latexmkrc:/root/.latexmkrc
|
||||
- ~/.zshrc:/root/.zshrc #bashの設定
|
||||
- ~/.ssh:/root/.ssh #sshキー
|
||||
#- ~/.gitconfig:/root/.gitconfig #gitの設定
|
||||
Reference in New Issue
Block a user