13 lines
390 B
YAML
13 lines
390 B
YAML
services:
|
|
<< service_name >>:
|
|
image: ghcr.io/mealie-recipes/mealie:latest
|
|
container_name: << service_name >>
|
|
ports:
|
|
- "<< port >>:9000"
|
|
environment:
|
|
- TZ=<< timezone >>
|
|
- ALLOW_SIGNUP=<< allow_signup | lower >>
|
|
- BASE_URL=http://localhost:<< port >>
|
|
volumes:
|
|
- << data_dir >>/<< service_name >>/data:/app/data
|
|
restart: unless-stopped
|