second commit

This commit is contained in:
Dzejkobik007
2022-11-01 23:55:06 +01:00
parent fc56546008
commit 81b8bb6e2b
3 changed files with 27 additions and 0 deletions

2
wap/raycast/Dockerfile Normal file
View File

@@ -0,0 +1,2 @@
FROM nginx:1.23.1-alpine
COPY src /usr/share/nginx/html

16
wap/raycast/README.md Normal file
View File

@@ -0,0 +1,16 @@
# **Raycast demo app**
Demo Url: [raycast.starraria.eu](https://raycast.starraria.eu)
## Quick start
```bash
git clone https://github.com/Dzejkobik007/skolavdf.git
mv skolavdf/wap/raycast ./
rm -rf skolavdf
cd raycast/
docker-compose up -d
```
## Requirements
- docker
- docker-compose

View File

@@ -0,0 +1,9 @@
version: '1.0'
services:
nginx:
build: .
restart: always
container_name: web-raycast
ports:
- 80:80