mirror of https://github.com/msgbyte/tailchat
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			376 B
		
	
	
	
		
			YAML
		
	
			
		
		
	
	
			19 lines
		
	
	
		
			376 B
		
	
	
	
		
			YAML
		
	
version: "3.3"
 | 
						|
 | 
						|
services:
 | 
						|
  swag:
 | 
						|
    image: lscr.io/linuxserver/swag:latest
 | 
						|
    container_name: swag
 | 
						|
    cap_add:
 | 
						|
      - NET_ADMIN
 | 
						|
    env_file:
 | 
						|
      - swag.env
 | 
						|
    environment:
 | 
						|
      - PUID=1000
 | 
						|
      - PGID=1000
 | 
						|
      - VALIDATION=http
 | 
						|
    volumes:
 | 
						|
      - ./config/nginx.conf:/config/nginx/site-confs/default.conf:ro
 | 
						|
    restart: unless-stopped
 | 
						|
    network_mode: "host"
 |