We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 329341f commit a22e365Copy full SHA for a22e365
Dockerfile
README.md
@@ -5,8 +5,7 @@ Site do Grupo de Usuários PHP de Santa Catarina
5
## Rodando localmente
6
7
```console
8
-docker build -t phpsc .
9
-docker run -it --name phpsc-site -v "$PWD":/usr/src/app -p 4000:4000 --rm phpsc
+docker-compose up
10
```
11
12
## Contribuindo
docker-compose.yml
@@ -0,0 +1,9 @@
1
+version: '3.4'
2
+services:
3
+ jekyll:
4
+ image: starefossen/github-pages
+ ports:
+ - "8080:4000"
+ volumes:
+ - .:/usr/src/app
+ tty: true
0 commit comments