Skip to content

Commit 51d330d

Browse files
authored
Update docker compose.yml because jekyll/jekyl image is not maintained and ruby 3.2 is necessary for dev environment (#878)
1 parent 4e2d18b commit 51d330d

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

docker-compose.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
services:
22
testingconferences:
3-
image: jekyll/jekyll:4.2.2
3+
image: ruby:3.2
44
container_name: tcorg
55
ports:
6-
- 4000:4000 # jekyll ui
7-
command: sh -c "bundle install && jekyll serve"
6+
- 4000:4000
7+
command: sh -c "gem install bundler:2.4.17 && bundle install && jekyll serve --host 0.0.0.0"
88
restart: unless-stopped
99
platform: linux/amd64
1010
volumes:
1111
- ./:/srv/jekyll
12+
working_dir: /srv/jekyll

0 commit comments

Comments
 (0)