mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-27 00:04:23 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			846 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			846 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # Use root/example as user/password credentials
 | |
| # Frontend/Backend Served via the same Uvicorn Server
 | |
| version: "3.1"
 | |
| services:
 | |
|   mealie:
 | |
|     build:
 | |
|       context: ./
 | |
|       dockerfile: Dockerfile
 | |
|     container_name: mealie
 | |
|     restart: always
 | |
|     ports:
 | |
|       - 9090:9000
 | |
|     environment:
 | |
|       db_username: root
 | |
|       db_password: example
 | |
|       db_host: mongo
 | |
|       db_port: 27017
 | |
|     volumes:
 | |
|       - ./mealie/data/img:/app/data/img
 | |
|       - ./mealie/data/backups:/app/data/backups
 | |
|   mongo:
 | |
|     image: mongo
 | |
|     restart: always
 | |
|     environment:
 | |
|       MONGO_INITDB_ROOT_USERNAME: root
 | |
|       MONGO_INITDB_ROOT_PASSWORD: example
 | |
|   mongo-express: # Optional Mongo GUI
 | |
|     image: mongo-express
 | |
|     restart: always
 | |
|     ports:
 | |
|       - 9091:8081
 | |
|     environment:
 | |
|       ME_CONFIG_MONGODB_ADMINUSERNAME: root
 | |
|       ME_CONFIG_MONGODB_ADMINPASSWORD: example
 |