27 lines
515 B
YAML
27 lines
515 B
YAML
version: '3'
|
|
services:
|
|
push:
|
|
image: registry.docker.tlfactory.pl/apps/push-stream-channels:0.1
|
|
build:
|
|
context: .
|
|
dockerfile: ./Dockerfile
|
|
restart: on-failure
|
|
environment:
|
|
- PORT=8080
|
|
ports:
|
|
- 80:8080
|
|
volumes:
|
|
- ./app.js:/srv/app.js
|
|
- ./public:/srv/public
|
|
networks:
|
|
- backend
|
|
php:
|
|
image: registry.docker.tlfactory.pl/apps/php-apache:7.4.20
|
|
networks:
|
|
- backend
|
|
volumes:
|
|
- ./public/:/var/www/html
|
|
|
|
networks:
|
|
backend:
|