Skip to content

Commit

Permalink
Adding compose file for project.
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryq27 committed Jul 8, 2024
1 parent 5720f21 commit 575acb9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
services:
jekyll:
image: ruby:3.4-rc
container_name: ghpages_jekyll
working_dir: /app
volumes:
- .:/app
- dependencies:/usr/local/bundle
ports:
- 4000:4000
- 4001:4001
restart: always
command: "jekyll serve --host 0.0.0.0 --livereload-port 4001 --livereload"
volumes:
dependencies: {}

0 comments on commit 575acb9

Please sign in to comment.