Skip to content
This repository has been archived by the owner on Nov 28, 2021. It is now read-only.

Latest commit

 

History

History
26 lines (17 loc) · 393 Bytes

docker.adoc

File metadata and controls

26 lines (17 loc) · 393 Bytes

Docker

Run from GitHub Registry

docker run -p 3000:3000 --name stargatebot -d ghcr.io/eddiejaoude/stargate:latest

Build locally

docker build -t eddiejaoude/stargate .

Run from local build

docker run -p 3000:3000 --name stargatebot -d eddiejaoude/stargate

Logs

To see the logs of your container

  1. docker ps

  2. docker logs <container-id>