Initial commit

This commit is contained in:
virus
2021-07-02 12:57:48 +02:00
commit e0a7231494
6 changed files with 107 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
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: