22 lines
403 B
YAML
22 lines
403 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'
|
|
volumes:
|
|
- ../logs/auth:/var/log/services/auth
|
|
networks:
|
|
- teacinema
|
|
|
|
networks:
|
|
teacinema:
|
|
external: true
|