Skip to content

Instantly share code, notes, and snippets.

@pasdam
Created January 1, 2023 17:46
Show Gist options
  • Select an option

  • Save pasdam/b87a1900dd98491b5414b9f8cf9b7884 to your computer and use it in GitHub Desktop.

Select an option

Save pasdam/b87a1900dd98491b5414b9f8cf9b7884 to your computer and use it in GitHub Desktop.
version: "3.9"
services:
gaia:
image: gaiaapp/gaia:latest
ports:
- "8080:8080"
environment:
- "GAIA_MONGODB_URI=mongodb://mongo/gaia"
- "GAIA_RUNNER_API_PASSWORD=123456"
- "SPRING_PROFILES_ACTIVE=github"
- "SPRING_SECURITY_OAUTH2_CLIENT_REGISTRATION_GITHUB_CLIENT_ID=2e9e07466d86ccff9af0"
- "SPRING_SECURITY_OAUTH2_CLIENT_REGISTRATION_GITHUB_CLIENT_SECRET=ada1820c724a70ad9bc3d3e3be2de7d5d9f8eb5a"
runner:
image: gaiaapp/runner:v2.3.1
environment:
- "GAIA_URL=http://gaia:8080"
- "GAIA_RUNNER_API_PASSWORD=123456"
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
mongo:
image: mongo:4.4.14-focal
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment