docker-compose/tandoor/docker-compose.yml

18 lines
447 B
YAML
Raw Permalink Normal View History

2024-05-05 14:00:09 +02:00
---
2024-03-18 17:04:52 +00:00
services:
# https://docs.tandoor.dev/install/docker/
tandoor:
image: vabene1111/recipes
container_name: tandoor
env_file:
- ./.env
ports:
2024-03-18 17:05:21 +00:00
- "127.0.0.1:18081:8080"
2024-03-18 17:04:52 +00:00
volumes:
# When using SQLite
- ./volumes/recipes:/opt/recipes
# When using PostgreSQL
# - ./volumes/staticfiles:/opt/recipes/staticfiles
# - ./volumes/mediafiles:/opt/recipes/mediafiles
2024-05-05 14:00:09 +02:00
restart: unless-stopped