Files
media-service/docker-compose.yml
2026-05-08 17:57:29 +03:00

20 lines
596 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
services:
media-service:
container_name: media-service
image: lendry/media-service:dev
build:
context: .
dockerfile: Dockerfile
args:
# Docker Compose сам найдет GIT_TOKEN в файле .env и вставит его сюда
- GIT_TOKEN=${GIT_TOKEN}
restart: always
env_file:
- .env # А это прокидывает все остальные переменные (S3_BUCKET и т.д.) внутрь контейнера для работы Go
networks:
- erp-networks
networks:
erp-networks:
external: true