mirror of
https://github.com/runyanjake/olomana.git
synced 2025-10-04 21:27:29 -07:00
Add code server + add to services description on homepage
This commit is contained in:
parent
d93dc05792
commit
8c2769833f
7
code-server/README.md
Normal file
7
code-server/README.md
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# Visual Studio
|
||||||
|
|
||||||
|
A self-hosted version of Visual Studio Code, as an online notebook.
|
||||||
|
|
||||||
|
https://coder.com/docs/code-server/latest/install#docker
|
||||||
|
https://hub.docker.com/r/linuxserver/code-server
|
||||||
|
|
34
code-server/docker-compose.yml
Normal file
34
code-server/docker-compose.yml
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
version: '3.7'
|
||||||
|
|
||||||
|
networks:
|
||||||
|
traefik_traefik-network:
|
||||||
|
external: true
|
||||||
|
|
||||||
|
services:
|
||||||
|
code-server:
|
||||||
|
image: lscr.io/linuxserver/code-server:latest
|
||||||
|
container_name: code-server
|
||||||
|
restart: unless-stopped
|
||||||
|
networks:
|
||||||
|
- traefik_traefik-network
|
||||||
|
volumes:
|
||||||
|
- /pwspool/software/code-server/config:/config
|
||||||
|
ports:
|
||||||
|
- 8443:8443
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Etc/UTC
|
||||||
|
- PASSWORD=jakenotes
|
||||||
|
#- HASHED_PASSWORD=TODO
|
||||||
|
- SUDO_PASSWORD=jakenotes
|
||||||
|
#- SUDO_PASSWORD_HASH=TODO
|
||||||
|
- PROXY_DOMAIN=code.whitney.rip
|
||||||
|
- DEFAULT_WORKSPACE=/config/workspace
|
||||||
|
labels:
|
||||||
|
- traefik.http.routers.code.rule=Host(`code.whitney.rip`)
|
||||||
|
- traefik.http.routers.code.tls=true
|
||||||
|
- traefik.http.routers.code.tls.certresolver=lets-encrypt
|
||||||
|
- traefik.http.services.code.loadbalancer.server.port=8443
|
||||||
|
- traefik.port=8443
|
||||||
|
|
@ -35,6 +35,13 @@
|
|||||||
<p>I usually host code on Github, but for personal projects or my own IP, I self host. Some repos are mirrored to Github.</p>
|
<p>I usually host code on Github, but for personal projects or my own IP, I self host. Some repos are mirrored to Github.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="service-entry">
|
||||||
|
<img class="blog-image" src="static/services/code-server.png" alt="Code Server">
|
||||||
|
<div class="service-text">
|
||||||
|
<h2>Code Server <a class="service-private-status">Private</a></h2>
|
||||||
|
<p>Personal notebook hosting stuff like my grocery list and anything I need to keep track of in the moment. UI is not too bad on both mobile and on desktop.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="service-entry">
|
<div class="service-entry">
|
||||||
<img class="blog-image" src="static/services/covid-tracker.png" alt="Covid Tracker">
|
<img class="blog-image" src="static/services/covid-tracker.png" alt="Covid Tracker">
|
||||||
<div class="service-text">
|
<div class="service-text">
|
||||||
@ -95,4 +102,4 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user