Skip to content

Commit

Permalink
added docker support - 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cophilot committed Aug 17, 2024
1 parent 423c671 commit 5410087
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM ubuntu:latest


RUN apt update
# Install curl
RUN apt install -y curl
# Install templify
RUN curl -s https://raw.githubusercontent.com/cophilot/templify/master/install | bash -s -- -y
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ For a more detailed documentation visit the [templify-docs](https://templify.phi
- [Installation](#installation)
- [Linux](#linux)
- [Windows](#windows)
- [Docker](#docker)
- [Development Installation](#development-installation)
- [Templates](#templates)
- [.templify](#templify)
Expand Down Expand Up @@ -106,6 +107,19 @@ You may need to restart your terminal after installation for the changes to take
---

## Docker

You can run an docker container with an installed templify version to try out the features. Just run the following commands:

```
git clone https://github.com/cophilot/templify.git
cd templify
docker build . --tag templify-image
docker run -it templify-image bash
```

---

## Development Installation

1. Clone the repository
Expand Down

0 comments on commit 5410087

Please sign in to comment.