An open API service indexing awesome lists of open source software.

https://github.com/5aaee9/coder-image

Personal coder workspace image
https://github.com/5aaee9/coder-image

Last synced: 2 months ago
JSON representation

Personal coder workspace image

Awesome Lists containing this project

README

          

# coder-image
[![Docker Image CI](https://github.com/5aaee9/coder-image/actions/workflows/build.yaml/badge.svg)](https://github.com/5aaee9/coder-image/actions/workflows/build.yaml)

Personal workspace image using in [coder](https://coder.com/)

![neofetch](.github/images/neofetch.png)

## Setup

### Container

Update container image to `ghcr.io/5aaee9/coder-image:main`

### Nix Daemon

Update startup script in coder main agent resource

```
resource "coder_agent" "main" {
os = "linux"
arch = "amd64"
startup_script_timeout = 180
startup_script = <<-EOT
sudo nix-daemon &>/tmp/nix.log &

nixld code-server --auth none --port 13337 >/tmp/code-server.log 2>&1 &
EOT
}
```