mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-01 16:14:21 -05:00
* fix: url remains after succesful import * docs: changelog + update todos * arm image * arm compose * compose updates * update poetry * arm support Co-authored-by: Hayden <hay-kot@pm.me>
17 lines
355 B
YAML
17 lines
355 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.arm
|
|
container_name: mealie
|
|
restart: always
|
|
ports:
|
|
- 9090:80
|
|
environment:
|
|
db_type: sql
|
|
volumes:
|
|
- ./mealie/data/:/app/data
|