mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-11-04 01:02:25 -06:00 
			
		
		
		
	* simplify docker-compose docs + example * Change note about reverse proxy, add traefik * Linting
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			561 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			561 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: "3.3"
 | 
						|
 | 
						|
services:
 | 
						|
  gotosocial:
 | 
						|
    image: superseriousbusiness/gotosocial:latest
 | 
						|
    container_name: gotosocial
 | 
						|
    user: 1000:1000
 | 
						|
    networks:
 | 
						|
      - gotosocial
 | 
						|
    environment:
 | 
						|
      GTS_HOST: example.org
 | 
						|
      GTS_DB_TYPE: sqlite
 | 
						|
      GTS_DB_ADDRESS: /gotosocial/storage/sqlite.db
 | 
						|
      GTS_LETSENCRYPT_ENABLED: "false"
 | 
						|
      GTS_LETSENCRYPT_EMAIL_ADDRESS: ""
 | 
						|
    ports:
 | 
						|
      - "443:8080"
 | 
						|
      #- "80:80"
 | 
						|
    volumes:
 | 
						|
      - ~/gotosocial/data:/gotosocial/storage
 | 
						|
    restart: "always"
 | 
						|
 | 
						|
networks:
 | 
						|
  gotosocial:
 | 
						|
    ipam:
 | 
						|
      driver: default
 |