Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
services:
testingconferences:
image: jekyll/jekyll:4.2.2
image: ruby:3.2
container_name: tcorg
ports:
- 4000:4000 # jekyll ui
command: sh -c "bundle install && jekyll serve"
- 4000:4000
command: sh -c "gem install bundler:2.4.17 && bundle install && jekyll serve --host 0.0.0.0"
restart: unless-stopped
platform: linux/amd64
volumes:
- ./:/srv/jekyll
working_dir: /srv/jekyll
Loading