22 lines
375 B
YAML
22 lines
375 B
YAML
name: teacinema
|
|
services:
|
|
notifications-service:
|
|
image: teacinema/notifications-service:dev
|
|
container_name: teacinema-notifications-service
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
restart: always
|
|
env_file:
|
|
- .env.production.local
|
|
expose:
|
|
- '9102'
|
|
networks:
|
|
- teacinema
|
|
|
|
|
|
|
|
networks:
|
|
teacinema:
|
|
external: true
|