Playit tunnel service in a Docker Image
Docker
docker run -d \
--name playit-docker \
-v playit-volume:/secret \
pepaondrugs/playitgg-docker:latestfor arm please use
docker run -d \
--name playit-docker \
-v playit-volume:/secret \
pepaondrugs/playitgg-docker:armfor armv7 please use
docker run -d \
--name playit-docker \
-v playit-volume:/secret \
pepaondrugs/playitgg-docker:armv7 If you wanted to change the user and/or group, you will need to use an arg
docker run -d \
--name playit-docker \
-v playit-volume:/secret \
--build-arg="PLAYIT_USER_UID=1000" \
--build-arg="PLAYIT_USER_GID=1000" \
pepaondrugs/playitgg-docker:latest Docker compose
version: "3"
services:
playit-docker:
container_name: "playit-docker"
image: pepaondrugs/playitgg-docker:latest
volumes:
- playit-volume:/secret
restart: unless-stopped
volumes:
playit-volume:
external: falseOr Docker compose for arm
version: "3"
services:
playit-docker:
container_name: "playit-docker"
image: pepaondrugs/playitgg-docker:arm
volumes:
- playit-volume:/secret
restart: unless-stopped
volumes:
playit-volume:
external: falseOr Docker compose for armv7 so 32bit
version: "3"
services:
playit-docker:
container_name: "playit-docker"
image: pepaondrugs/playitgg-docker:armv7
volumes:
- playit-volume:/secret
restart: unless-stopped
volumes:
playit-volume:
external: falseDocker Compose to change the user and/or group
version: "3"
services:
playit-docker:
build:
args:
PLAYIT_USER_UID: 1000
PLAYIT_USER_GID: 1000
container_name: "playit-docker"
image: pepaondrugs/playitgg-docker:latest
volumes:
- playit-volume:/secret
restart: unless-stopped
volumes:
playit-volume:
external: falseIf you want to claim the agent have a look at the log
docker logs playit-dockerlink=https://playit.gg/claim/#######If anything doesnt work dont hesitate to open a issue