Skip to content

Commit a22e365

Browse files
authored
Add docker-compose and remove Dockefile, with dont need build (#73)
1 parent 329341f commit a22e365

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

Dockerfile

-8
This file was deleted.

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ Site do Grupo de Usuários PHP de Santa Catarina
55
## Rodando localmente
66

77
```console
8-
docker build -t phpsc .
9-
docker run -it --name phpsc-site -v "$PWD":/usr/src/app -p 4000:4000 --rm phpsc
8+
docker-compose up
109
```
1110

1211
## Contribuindo

docker-compose.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: '3.4'
2+
services:
3+
jekyll:
4+
image: starefossen/github-pages
5+
ports:
6+
- "8080:4000"
7+
volumes:
8+
- .:/usr/src/app
9+
tty: true

0 commit comments

Comments
 (0)