Skip to content

Commit

Permalink
Update docker image in README and docker-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
m4tt72 committed Dec 31, 2023
1 parent da14496 commit 9a93414
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,14 @@ I wanted to have a terminal style website for a long time, and I finally decided
### Using docker (recommended)

```bash
docker run -d --name terminal -p 3000:3000 m4tt72/terminal
docker run -d --name terminal -p 3000:3000 ghcr.io/m4tt72/terminal:svelte
```

If you want to run with custom configuration, make sure you have a copy of `config.json` then mount in the container:

```bash
docker run -d \
--name terminal \
-p 3000:3000 \
m4tt72/terminal
ghcr.io/m4tt72/terminal:svelte
```

### Using npm/yarn
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ version: '3'

services:
terminal:
#image: ghcr.io/m4tt72/terminal:svelte
build: .
container_name: terminal
restart: unless-stopped
Expand Down

0 comments on commit 9a93414

Please sign in to comment.