Moved gitea service into development folder - Jira addition to follow. Day1 - currently sat in traffic on the M20, only starting to starve slightly
This commit is contained in:
parent
f8134ea194
commit
94e6a63ea3
28
Development/Gitea/docker-compose.yml
Normal file
28
Development/Gitea/docker-compose.yml
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
version: '3.8'
|
||||||
|
|
||||||
|
services:
|
||||||
|
|
||||||
|
#gitea (222)
|
||||||
|
gitea:
|
||||||
|
image: gitea/gitea:latest
|
||||||
|
container_name: gitea
|
||||||
|
environment:
|
||||||
|
- APP_NAME="gitea"
|
||||||
|
- USER_UID=1000
|
||||||
|
- USER_GID=1000
|
||||||
|
- USER=git
|
||||||
|
- RUN_MODE=prod
|
||||||
|
- DOMAIN=git.luke-else.co.uk
|
||||||
|
- SSH_DOMAIN=git.luke-else.co.uk
|
||||||
|
- HTTP_PORT=3000
|
||||||
|
- ROOT_URL=https://git.luke-else.co.uk
|
||||||
|
- SSH_PORT=222
|
||||||
|
- SSH_LISTEN_PORT=22
|
||||||
|
- DB_TYPE=sqlite3
|
||||||
|
ports:
|
||||||
|
- "222:22"
|
||||||
|
volumes:
|
||||||
|
- ./gitea:/data
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
restart: unless-stopped
|
Loading…
Reference in New Issue
Block a user