12 lines
347 B
YAML
12 lines
347 B
YAML
services:
|
|
instagram-downloader:
|
|
build: .
|
|
container_name: instagram_downloader_service
|
|
restart: unless-stopped
|
|
network_mode: host
|
|
volumes:
|
|
- ./downloads:/app/downloads
|
|
- ./instagram_cookies.txt:/app/instagram_cookies.txt
|
|
environment:
|
|
- INSTAGRAM_COOKIES_FILE=/app/instagram_cookies.txt
|
|
- PORT=5556
|