Skip to content

Commit

Permalink
🚚 rename notebook -> hugo-notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
sujaykumarh committed May 24, 2022
1 parent 18ff06a commit 4ea87ed
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,26 @@ services:
user: ${CURRENT_USER:-1000:1000}
command: help
volumes:
- ${SRC_DIR:-./}:/src/notebook
- ${SRC_DIR:-./}:/src/hugo-notebook

hugoExample:
image: klakegg/hugo:ext-alpine
container_name: ${DK_HUGO_NAME:-notebook_hugo}_example
user: ${CURRENT_USER:-1000:1000}
working_dir: "/src/notebook/exampleSite"
working_dir: "/src/hugo-notebook/exampleSite"
command: help
volumes:
- ${SRC_DIR:-./}:/src/notebook
- ${SRC_DIR:-./}:/src/hugo-notebook

server:
image: klakegg/hugo:ext-alpine
container_name: ${DK_HUGO_NAME:-notebook_hugo}_server
user: ${CURRENT_USER:-1000:1000}
restart: unless-stopped
working_dir: "/src/notebook/exampleSite"
working_dir: "/src/hugo-notebook/exampleSite"
command: ["server", "--port", "${HUGO_PORT:-1313}", "--liveReloadPort", "${HUGO_PORT:-1313}", "--themesDir", "../..", "--watch" , "-D"]
volumes:
- ${SRC_DIR:-./}:/src/notebook
- ${SRC_DIR:-./}:/src/hugo-notebook
networks:
- notebook_hugo_net
ports:
Expand Down
2 changes: 1 addition & 1 deletion exampleSite/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

baseURL = 'https://example.com/'
title = 'Hugo Notebook'
theme = 'notebook'
theme = 'hugo-notebook'

# Book configuration
disablePathToLower = true
Expand Down
2 changes: 1 addition & 1 deletion exampleSite/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

baseURL: https://example.com/
title: Hugo Notebook
theme: notebook
theme: hugo-notebook

# Book configuration
disablePathToLower: true
Expand Down

0 comments on commit 4ea87ed

Please sign in to comment.