-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from benjy8001/develop
Evolutions
- Loading branch information
Showing
5 changed files
with
56 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM debian:jessie | ||
|
||
COPY ./ /srv | ||
|
||
VOLUME /srv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
DOCKER_COMPOSE = docker-compose | ||
|
||
EXEC_DEBIAN = $(DOCKER_COMPOSE) exec -T debian /entrypoint | ||
|
||
start: | ||
printf "\033[32m You can go take a coffee while we work for you \033[0m\n" | ||
$(DOCKER_COMPOSE) pull | ||
$(DOCKER_COMPOSE) up -d --remove-orphans debian | ||
|
||
stop: | ||
$(DOCKER_COMPOSE) stop | ||
|
||
run: | ||
$(EXEC_DEBIAN) ./install_zsh.sh | ||
|
||
connect: ## Connect to the container of the project | ||
$(EXEC_DEBIAN) | ||
|
||
.PHONY: start stop run connect |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
# zsh_powerlevel9k_installer | ||
### Custom ZSH and powerlevel9k autoinstaller for debian | ||
|
||
Install software and fonts needed ; customise ~/.zshrc ; etting zsh as default shell | ||
|
||
**Installation :** | ||
|
||
Just run ./install_zsh.sh and enjoy ! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: '3.4' | ||
|
||
services: | ||
debian: | ||
image: debian:jessie | ||
volumes: | ||
- ./:/srv:ro |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters