Files
movies-diary/docker-compose.yml
Gabriel Kaszewski b0bfc149e1
Some checks failed
CI / Build & Push Docker Image (push) Has been cancelled
CI / Check / Test (push) Has been cancelled
ci: build + push Docker image to ghcr.io on master/tags
2026-06-04 17:47:04 +02:00

32 lines
652 B
YAML

services:
app:
image: ghcr.io/gkaszewski/movies-diary:latest
# To build from source instead: comment out "image" and uncomment "build"
# build:
# context: .
# args:
# FEATURES: sqlite,sqlite-federation
ports:
- "3000:3000"
env_file: .env
volumes:
- data:/data
restart: unless-stopped
worker:
image: ghcr.io/gkaszewski/movies-diary:latest
# build:
# context: .
# args:
# FEATURES: sqlite,sqlite-federation
entrypoint: ["./worker"]
env_file: .env
volumes:
- data:/data
restart: unless-stopped
depends_on:
- app
volumes:
data: