- Add ByteStash Docker service configuration and deployment - Configure subdomain routing through Caddy - Add DNS record for ByteStash subdomain - Update development service category to include ByteStash 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			23 lines
		
	
	
		
			514 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			514 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
services:
 | 
						|
  codeserver:
 | 
						|
    stdin_open: true
 | 
						|
    tty: true
 | 
						|
    labels:
 | 
						|
      glance.name: Code Server
 | 
						|
      glance.icon: si:vscodium
 | 
						|
      glance.url: https://{{ subdomains.code }}/
 | 
						|
      glance.description: Code Server
 | 
						|
      mag37.dockcheck.update: true
 | 
						|
    container_name: codeserver
 | 
						|
    volumes:
 | 
						|
      - home:/home
 | 
						|
    environment:
 | 
						|
      - DOCKER_USER=$USER
 | 
						|
    image: codercom/code-server:latest
 | 
						|
volumes:
 | 
						|
  home:
 | 
						|
    driver: local
 | 
						|
networks:    
 | 
						|
  default:
 | 
						|
    external: true
 | 
						|
    name: {{ docker.network_name }} |