transcriptor-gdrive-sync/docker-compose.yml
2025-04-03 12:27:49 +02:00

29 lines
689 B
YAML

networks:
mariadb:
external: true
name: mariadb
services:
drive-sync:
build:
context: .
dockerfile: ./docker/syncer/Dockerfile
environment:
# Set your target Google Drive folder ID here.
- DRIVE_FOLDER_ID=1qjq9XEC19g6LGw6fwcZXSQYgOO2YuAOA
volumes:
- /shared/transcriptor/clips:/shared/transcriptor/clips
drive-id-loader:
build:
context: .
dockerfile: ./docker/id_loader/Dockerfile
environment:
# Set your target Google Drive folder ID here.
- DRIVE_FOLDER_ID=1qjq9XEC19g6LGw6fwcZXSQYgOO2YuAOA
volumes:
- /shared/transcriptor/clips:/shared/transcriptor/clips
networks:
- mariadb