Skip to content

Instantly share code, notes, and snippets.

@fabiante
Created November 18, 2019 09:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabiante/4c4903739171827128ce75de5783c89a to your computer and use it in GitHub Desktop.
Save fabiante/4c4903739171827128ce75de5783c89a to your computer and use it in GitHub Desktop.
Gitea + Jenkins Docker-Compose
version: "3"
services:
gitea:
image: gitea/gitea:latest
environment:
- USER_UID=1000
- USER_GID=1000
ports:
- "3000:3000"
- "222:22"
jenkins:
image: jenkins/jenkins:lts
ports:
- 8080:8080
- 50000:50000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment