docker
This commit is contained in:
parent
39e38a7152
commit
cb56ecfd97
2 changed files with 14 additions and 0 deletions
8
Dockerfile
Normal file
8
Dockerfile
Normal file
|
@ -0,0 +1,8 @@
|
|||
FROM alpine:latest
|
||||
|
||||
RUN apk add --no-cache php
|
||||
|
||||
COPY . /app
|
||||
WORKDIR /app
|
||||
|
||||
CMD ["php", "-S", "0.0.0.0:80"]
|
6
docker-compose.yml
Normal file
6
docker-compose.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
services:
|
||||
rit:
|
||||
build: .
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- '80:80'
|
Loading…
Reference in a new issue