Skip to content

Commit

Permalink
Add Docker setup and image to README
Browse files Browse the repository at this point in the history
Included a Dockerfile and docker-compose.yml for setting up the Jerusalem Tunnel service. Also added an image to the README for better visualization.
  • Loading branch information
mjm918 committed Aug 15, 2024
1 parent 106c277 commit e658548
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,15 @@ Start the server:

Start the server using Docker:

```bash
docker build -t jerusalem-tunnel .
docker run -d -p 8901:8901 --name jerusalem-tunnel -v $(pwd)/config.yaml:/app/config.yaml jerusalem-tunnel
```
```bash
docker build -t jerusalem-tunnel .
docker run -d -p 8901:8901 --name jerusalem-tunnel -v $(pwd)/config.yaml:/app/config.yaml jerusalem-tunnel
```

Or using docker compose:
```bash
docker compose up -d
```

## Configuration

Expand Down

0 comments on commit e658548

Please sign in to comment.