auth-service/compose.yml
2026-03-25 06:47:16 +03:00

20 lines
346 B
YAML

name: teacinema
services:
auth-service:
image: teacinema/auth-service:dev
container_name: teacinema-auth-service
build:
context: .
dockerfile: Dockerfile
restart: always
env_file:
- .env.production.local
expose:
- '9101'
networks:
- teacinema
networks:
teacinema:
external: true