version: "3.1"
services:
mealie:
build:
context: ./
dockerfile: Dockerfile
container_name: mealie
restart: always
ports:
- 9099:80
environment:
db_type: mongo
db_username: root
db_password: example
db_host: mongo
db_port: 27017
# volumes:
# - ./mealie/data/:/app/data
mongo:
image: mongo
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
mongo-express: # Optional Mongo GUI
image: mongo-express
- 9091:8081
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example