Skip to content

Commit

Permalink
dockge added
Browse files Browse the repository at this point in the history
  • Loading branch information
mrasif committed Jul 15, 2024
1 parent ff439f3 commit beb3546
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions dockge/.arch
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
linux/amd64,linux/arm/v7,linux/arm64
1 change: 1 addition & 0 deletions dockge/.version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v1
2 changes: 2 additions & 0 deletions dockge/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
FROM louislam/dockge:1
LABEL maintainer="Tech Thinker <https://techthinker.js.org>"
27 changes: 27 additions & 0 deletions dockge/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Dockge

It will allow you to run your code in a Docker container, and then access it from your local machine.

## Installation
- Create `docker-compose.yml`
```sh
version: "3.8"
services:
dockge:
image: techthinkerorg/dockge:v1
restart: unless-stopped
ports:
- 10001:5001
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/app/data
- ./.docker/:/root/.docker
- /srv/dockge-stacks:/opt/stacks
environment:
# Tell Dockge where to find the stacks
- DOCKGE_STACKS_DIR=/opt/stacks
```
- Run `docker-compose up`
```sh
docker-compose up -d
```

0 comments on commit beb3546

Please sign in to comment.