This repository has been archived on 2025-08-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
lucida-queue/docker-compose.yml

30 lines
513 B
YAML

services:
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
ports:
- "8080:80"
depends_on:
- backend
restart: always
backend:
build:
context: ./backend
dockerfile: Dockerfile
ports:
- "3000:3000"
volumes:
- "/srv/lucida-queue:/data"
depends_on:
- tor
restart: always
tor:
container_name: tor
image: osminogin/tor-simple
ports:
- "9050:9050"
stop_grace_period: 1m
restart: always