Skip to content

Commit d920632

Browse files
committed
chore: add docker compose sample
1 parent 4693994 commit d920632

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,19 @@ docker build -t it-tools --build-arg BASE_URL="/my-folder/" .
1818
docker run -d --name it-tools --restart unless-stopped -p 8080:80 it-tools
1919
```
2020

21+
## Use in Docker Compose file
22+
23+
```yml
24+
services:
25+
it-tools:
26+
container_name: it-tools
27+
image: ghcr.io/sharevb/it-tools:nightly
28+
pull_policy: always
29+
restart: unless-stopped
30+
ports:
31+
- 8080:80
32+
```
33+
2134
## Installation methods
2235
2336
| Docker Image | Local Installation |

docker-compose.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
services:
2+
it-tools:
3+
container_name: it-tools
4+
image: ghcr.io/sharevb/it-tools:nightly
5+
pull_policy: always
6+
restart: unless-stopped
7+
ports:
8+
- 8080:80

0 commit comments

Comments
 (0)