mirror of
				https://gitlab.sectorq.eu/home/docker-compose.git
				synced 2025-10-31 02:21:10 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1005 B
		
	
	
	
		
			YAML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1005 B
		
	
	
	
		
			YAML
		
	
	
		
			Executable File
		
	
	
	
	
| services:
 | |
|   app:
 | |
|     depends_on:
 | |
|     - db
 | |
|     env_file:
 | |
|     - stack.env
 | |
|     image: ${DOCKER_REGISTRY:-}lscr.io/linuxserver/bookstack:latest
 | |
|     labels:
 | |
|       com.centurylinklabs.watchtower.enable: true
 | |
|       homepage.container: bookstack-app-1
 | |
|       homepage.description: Books
 | |
|       homepage.group: Utilities
 | |
|       homepage.href: https://bookstack.sectorq.eu
 | |
|       homepage.icon: bookstack.png
 | |
|       homepage.name: Bookstack
 | |
|       homepage.server: my-docker
 | |
|       homepage.weight: 1
 | |
|       wud.watch: true
 | |
|       wud.watch.digest: true
 | |
|     ports:
 | |
|     - 6875:80
 | |
|     restart: ${RESTART:-unless-stopped}
 | |
|     volumes:
 | |
|     - /share/docker_data/bookstack/bookstack_app_data:/config
 | |
|   db:
 | |
|     env_file:
 | |
|     - stack.env
 | |
|     environment:
 | |
|       PGID: 0
 | |
|       PUID: 0
 | |
|     image: ${DOCKER_REGISTRY:-}lscr.io/linuxserver/mariadb
 | |
|     labels:
 | |
|       wud.watch: true
 | |
|       wud.watch.digest: true
 | |
|     restart: ${RESTART:-unless-stopped}
 | |
|     volumes:
 | |
|     - /share/docker_data/bookstack/bookstack_db_data:/config
 | |
| version: '2'
 | 
