All Questions
Tagged with gitea docker-compose
2 questions
0
votes
1
answer
605
views
Docker compose gitea remote ssh connection refused
I have setup Gitea on an Ubuntu server using this docker-compose config:
version: '3.9'
services:
db:
image: docker.io/bitnami/postgresql:15
volumes:
- 'db_data:/bitnami/postgresql'
...
1
vote
1
answer
8k
views
SSH connection not working in gitea
I have setup gitea using docker-compose, External SSH port of my machine is 4444 which I set in sshd_config
version: '2'
volumes:
gitea:
postgres:
networks:
gitea:
external: false
services:...