Skip to content

Commit d8be1fb

Browse files
authored
Merge pull request #5 from KevinSjoberg/feature/docker-setup
Feature/docker setup
2 parents 2ae7ff5 + 2708392 commit d8be1fb

File tree

5 files changed

+29
-3
lines changed

5 files changed

+29
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ _site
22
.sass-cache
33
.jekyll-metadata
44
.DS_Store
5+
vendor/bundle

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ source "https://rubygems.org"
88
#
99
# This will help ensure the proper Jekyll version is running.
1010
# Happy Jekylling!
11-
gem "jekyll", "~> 3.8.5"
11+
gem "jekyll", "~> 3.8"
1212

1313
# This is the default theme for new Jekyll sites. You may change this to anything you like.
1414
gem "jekyll-theme-midnight", "~> 0.1"

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ PLATFORMS
6464
ruby
6565

6666
DEPENDENCIES
67-
jekyll (~> 3.8.5)
67+
jekyll (~> 3.8)
6868
jekyll-feed (~> 0.6)
6969
jekyll-theme-midnight (~> 0.1)
7070
tzinfo-data
7171

7272
BUNDLED WITH
73-
2.0.1
73+
2.0.2

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Atom Community Website
2+
3+
Atom Community website powered by [jekyll](https://jekyllrb.com).
4+
5+
## Development
6+
7+
The easiest way to get started is using [Docker](https://www.docker.com).
8+
9+
```console
10+
$ docker-compose up
11+
```
12+
13+
If you're not using Docker, see https://jekyllrb.com/docs/ for how to get started.

docker-compose.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: "3.8"
2+
3+
services:
4+
site:
5+
image: jekyll/jekyll:3.8
6+
command: ["jekyll", "serve", "-H", "0.0.0.0", "-P", "4000", "--livereload"]
7+
ports:
8+
- "4000:4000"
9+
- "35729:35729"
10+
volumes:
11+
- ".:/srv/jekyll"
12+
- "./vendor/bundle:/usr/local/bundle"

0 commit comments

Comments
 (0)