Created
November 18, 2019 09:18
-
-
Save fabiante/4c4903739171827128ce75de5783c89a to your computer and use it in GitHub Desktop.
Gitea + Jenkins Docker-Compose
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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