mirror of
				https://github.com/usatiuk/writer.git
				synced 2025-10-29 00:17:48 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			423 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			423 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: "3.8"
 | |
| services:
 | |
|   writerapp:
 | |
|     image: stepanusatiuk/writer:main
 | |
|     restart: always
 | |
|     ports:
 | |
|       - "8080:8080"
 | |
|     volumes:
 | |
|       - ./data:/usr/src/app/data
 | |
|     environment:
 | |
|       - JWT_SECRET=huegrhuigerhupoiervw
 | |
|       - PORT=8080
 | |
|     env_file:
 | |
|       - db.env
 | |
|     depends_on:
 | |
|       - db
 | |
|   db:
 | |
|     image: mariadb
 | |
|     restart: always
 | |
|     volumes:
 | |
|       - ./dbdata:/var/lib/mysql
 | |
|     env_file:
 | |
|       - db.env
 | |
| 
 |