mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-30 17:53:31 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| # Getting Started
 | |
| To deploy docker on your local network it is highly recommended to use docker to deploy the image straight from dockerhub. Using the docker-compose below you should be able to get a stack up and running easily by changing a few default values and deploying. 
 | |
| 
 | |
| Alternatively, this project is run in python. If you are deadset on deploying on a linux machine you can run this in an python enviromnet with a dedicated MongoDatabase. Provided that you know thats how you want to host the application, I'll assume you know how to do that.
 | |
| 
 | |
| [Get Docker](https://docs.docker.com/get-docker/)
 | |
| 
 | |
| ### Installation - Docker
 | |
| 
 | |
| ```yaml
 | |
| # docker-compose.yml
 | |
| version: "3.1"
 | |
| services:
 | |
|   mealie:
 | |
|     container_name: mealie
 | |
|     image: hkotel/mealie:latest
 | |
|     restart: always
 | |
|     ports:
 | |
|       - 9000:9000
 | |
|     environment:
 | |
|       db_username: root     # Your Mongo DB Username - Please Change
 | |
|       db_password: example  # Your Mongo DB Password - Please Change
 | |
|       db_host: mongo
 | |
|       db_port: 27017    # The Default port for Mongo DB
 | |
|     volumes:
 | |
|       - ./data/img:/app/data/img
 | |
|       - ./data/backups:/app/data/backups
 | |
|       
 | |
|   mongo:
 | |
|     image: mongo
 | |
|     restart: always
 | |
|     environment:
 | |
|       MONGO_INITDB_ROOT_USERNAME: root  # Change!
 | |
|       MONGO_INITDB_ROOT_PASSWORD: example   # Change!
 | |
| 
 | |
|   mongo-express: # Optional Mongo GUI
 | |
|     image: mongo-express
 | |
|     restart: always
 | |
|     ports:
 | |
|       - 9091:8081
 | |
|     environment:
 | |
|       ME_CONFIG_MONGODB_ADMINUSERNAME: root
 | |
|       ME_CONFIG_MONGODB_ADMINPASSWORD: example
 | |
| ``` |