Gitea kasutamine: erinevus redaktsioonide vahel
Allikas: Imre kasutab arvutit
Mine navigeerimisribaleMine otsikasti
(Uus lehekülg: '===Sissejuhatus=== TODO ===Tööpõhimõte=== TODO ===Paigaldamine=== Docker compose <pre> </pre> kus * TODO Tulemusena saab läheneda ... ===Kasutamine=== TODO ===Kasulikud lisamaterjalid=== * https://unixhost.pro/blog/2023/03/installing-and-configuring-gitea-in-a-docker-container-a-guide-for-developers-and-devops-specialists/') |
Resümee puudub |
||
| 9. rida: | 9. rida: | ||
===Paigaldamine=== |
===Paigaldamine=== |
||
| + | Docker compose, https://docs.gitea.com/installation/install-with-docker |
||
| − | Docker compose |
||
<pre> |
<pre> |
||
| + | name: p_gitea |
||
| + | services: |
||
| + | svc_gitea: |
||
| + | image: gitea/gitea:latest |
||
| + | container_name: cn_gitea |
||
| + | restart: always |
||
| + | environment: |
||
| + | - USER_UID=1000 |
||
| + | - USER_GID=1000 |
||
| + | - TZ=Europe/Tallin |
||
| + | |||
| + | volumes: |
||
| + | - /srv/gitea/volume/data:/data |
||
| + | - /etc/timezone:/etc/timezone:ro |
||
| + | - /etc/localtime:/etc/localtime:ro |
||
| + | |||
| + | ports: |
||
| + | - "3000:3000" |
||
| + | - "2222:22" |
||
| + | |||
| + | networks: |
||
| + | - nw_gitea |
||
| + | |||
| + | networks: |
||
| + | nw_gitea: |
||
| + | name: nw_gitea |
||
| + | driver: bridge |
||
</pre> |
</pre> |
||
Redaktsioon: 4. juuni 2026, kell 00:37
Sissejuhatus
TODO
Tööpõhimõte
TODO
Paigaldamine
Docker compose, https://docs.gitea.com/installation/install-with-docker
name: p_gitea
services:
svc_gitea:
image: gitea/gitea:latest
container_name: cn_gitea
restart: always
environment:
- USER_UID=1000
- USER_GID=1000
- TZ=Europe/Tallin
volumes:
- /srv/gitea/volume/data:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "3000:3000"
- "2222:22"
networks:
- nw_gitea
networks:
nw_gitea:
name: nw_gitea
driver: bridge
kus
- TODO
Tulemusena saab läheneda ...
Kasutamine
TODO