22 lines
445 B
YAML
22 lines
445 B
YAML
version: '3'
|
|
services:
|
|
push:
|
|
image: docker.git.tlfactory.pl/apps/push-stream-channels:0.4
|
|
build:
|
|
context: .
|
|
dockerfile: ./Dockerfile
|
|
restart: on-failure
|
|
environment:
|
|
- PORT=8080
|
|
- DEV=1
|
|
ports:
|
|
- 8201:8080
|
|
volumes:
|
|
- ./app.js:/srv/app.js
|
|
- ./public:/srv/public
|
|
php:
|
|
image: registry.docker.tlfactory.pl/apps/php-apache:7.4.20
|
|
volumes:
|
|
- ./public/:/var/www/html
|
|
|