27 lines
		
	
	
		
			659 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			659 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
services:
 | 
						|
 | 
						|
  ghost:
 | 
						|
    image: ghost:5-alpine
 | 
						|
    restart: unless-stopped
 | 
						|
    environment:
 | 
						|
      - database__client=sqlite3
 | 
						|
      - database__connection__filename=/var/lib/ghost/content/data/ghost.db
 | 
						|
      - database__useNullAsDefault=true
 | 
						|
      - url=https://phlog.thesatelliteoflove.com
 | 
						|
    volumes:
 | 
						|
      - ghost:/var/lib/ghost/content
 | 
						|
    extra_hosts:
 | 
						|
      - 'phlog.thesatelliteoflove.com:172.20.0.5'
 | 
						|
    labels:
 | 
						|
      glance.name: Ghost
 | 
						|
      glance.icon: si:ghost
 | 
						|
      glance.url: https://phlog.thesatelliteoflove.com/
 | 
						|
      glance.description: Photo Blog
 | 
						|
 | 
						|
volumes:
 | 
						|
  ghost:
 | 
						|
    driver: local
 | 
						|
networks:    
 | 
						|
  default:
 | 
						|
    external: true
 | 
						|
    name: lava |