Skip to content

Commit 2d33d31

Browse files
committed
Dockerfile and update to README
1 parent 3952eba commit 2d33d31

File tree

2 files changed

+63
-19
lines changed

2 files changed

+63
-19
lines changed

Dockerfile

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
FROM codercom/code-server:latest
2+
RUN sudo apt-get update && sudo apt-get install -y ruby
3+
RUN sudo apt-get install -y nodejs postgresql-client
4+
RUN sudo apt-get install -y gnupg tree jq
5+
RUN sudo apt-get upgrade -y
6+
7+
# Install zsh
8+
RUN sudo apt-get install -y zsh powerline fonts-powerline vim
9+
RUN git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
10+
RUN cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
11+
12+
# Install bat command-line utility
13+
RUN sudo wget https://github.com/sharkdp/bat/releases/download/v0.12.1/bat-musl_0.12.1_amd64.deb && sudo dpkg -i bat-musl_0.12.1_amd64.deb
14+
15+
# Install zsh-autosuggestions command-line utility
16+
RUN git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
17+
RUN echo "plugins=(zsh-autosuggestions) \nsource ~/.oh-my-zsh/oh-my-zsh.sh \n" >> ~/.zshrc
18+
19+
# Install hstr command-line utility
20+
SHELL ["/bin/zsh", "-c"]
21+
RUN sudo sh -c "echo \"deb https://www.mindforger.com/debian stretch main \n\" >> /etc/apt/sources.list"
22+
RUN sudo sh -c "wget -qO - https://www.mindforger.com/gpgpubkey.txt | apt-key add -"
23+
RUN sudo apt-get update -qq
24+
RUN sudo apt-get install -y hstr
25+
RUN hstr --show-zsh-configuration >> ~/.hstr
26+
RUN cat ~/.hstr >> ~/.zshrc

README.md

+37-19
Original file line numberDiff line numberDiff line change
@@ -9,34 +9,56 @@ This repo contains the terraform scripts necessary to create a remote VS Code en
99
* [Terraform 0.11.13](https://www.terraform.io/downloads.html)
1010
* [tfenv](https://github.com/tfutils/tfenv) recommended to manage terraform versions
1111

12+
## Build Image
13+
14+
If you need a more customized environment, the Dockerfile has a custom Ruby image which is already available [here](https://hub.docker.com/repository/docker/davidkarim/code-server-ruby):
15+
16+
```bash
17+
# Ruby environment
18+
docker image build -t <docker-hub-account>/code-server-ruby .
19+
docker image push <docker-hub-account>/code-server-ruby:latest
20+
# Test and run environment locally
21+
docker container run -it -p 127.0.0.1:8080:8080 -v "$PWD:/home/coder/project" <docker-hub-account>/code-server-ruby
22+
```
23+
24+
Test and run original image locally:
25+
26+
```bash
27+
# Starting server locally
28+
docker container run -it -p 127.0.0.1:8080:8080 -v "$PWD:/home/coder/project" codercom/code-server
29+
```
30+
1231
## Environment Variables
1332

1433
The following must be defined in a .env file:
1534

16-
| Variable name | description |
17-
|--------------------|--------------------------------------------------------------------------------|
18-
| TF_VAR_ec2_ssh_key | Name of existing EC2 instance SSH key |
19-
| TF_VAR_aws_profile | Name of AWS profile, typically located in ~/.aws/credentials |
20-
| TF_VAR_region | Region where to build infrastructure |
21-
| TF_VAR_subnet_id_1 | Public subnet for Application load balancer, EC2 will also be placed here. |
22-
| TF_VAR_subnet_id_2 | Secondary public subnet |
23-
| TF_VAR_aws_vpc_id | VPC identifier |
24-
| SERVER_PASSWORD | Password that will be used for access to VS Code server. Use complex password. |
35+
| Variable name | description |
36+
|------------------------|--------------------------------------------------------------------------------|
37+
| TF_VAR_ec2_ssh_key | Name of existing EC2 instance SSH key |
38+
| TF_VAR_aws_profile | Name of AWS profile, typically located in ~/.aws/credentials |
39+
| TF_VAR_region | Region where to build infrastructure |
40+
| TF_VAR_subnet_id_1 | Public subnet for Application load balancer, EC2 will also be placed here. |
41+
| TF_VAR_subnet_id_2 | Secondary public subnet |
42+
| TF_VAR_aws_vpc_id | VPC identifier |
43+
| SERVER_PASSWORD | Password that will be used for access to VS Code server. Use complex password. |
44+
| TF_VAR_certificate_arn | AWS Certificate ARN. Needs to be set when using secure domains. |
2545

2646
## Creating a Remote Server
2747

2848
To create the server, create a .env file with the environment variable values. Then run:
2949

3050
```bash
31-
# If using tfenv, change to version 0.11.3 of terraform
32-
tfenv use 0.11.13
33-
# Create infrastructure
34-
. ./.env && ./create.sh
51+
# Create infrastructure, use insecure domain
52+
./create.sh
53+
# Create infrastructure, use a secure domain
54+
./create.sh --secure
55+
# Create infrastructure, use a custom image, and secure domain
56+
./create.sh -i davidkarim/code-server-ruby --secure
3557
```
3658

3759
## Connecting to Remote Server
3860

39-
Use the endpoint provided to navigate to the server with your browser. The login password will also be provided and should be the same as defined in the .env file.
61+
Use the endpoint provided to navigate to the server with your browser. The login password will also be provided and should be the same as defined in the .env file. When setting up a secure domain, a certificate needs to be provided and the name of that domain can be used to connect. Default port is 8080.
4062

4163
## Destroying Remote Server
4264

@@ -49,8 +71,4 @@ To destroy the server:
4971

5072
## To Do
5173

52-
* Make ALB endpont work with SSL
53-
* Instead of using the codercom/code-server image directly, build custom image.
54-
55-
See FAQ: https://github.com/cdr/code-server/blob/master/doc/FAQ.md
56-
See here for recommended oauth from that FAQ: https://github.com/pusher/oauth2_proxy
74+
* Option for updating Route53 domain.

0 commit comments

Comments
 (0)