Compare commits
No commits in common. "968b368aff94b2123683005cab38c7b121fbc9e8" and "87d87319b602866e8bf9127461c0b5dc377ff23f" have entirely different histories.
968b368aff
...
87d87319b6
2 changed files with 5 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
|||
# External
|
||||
git.mixel.cloud {
|
||||
reverse_proxy 192.168.178.230:3333
|
||||
reverse_proxy 192.168.178.4:8150
|
||||
}
|
||||
|
||||
# Internal
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
|
||||
services:
|
||||
server:
|
||||
image: codeberg.org/forgejo/forgejo:10
|
||||
image: codeberg.org/forgejo/forgejo:9.0.3
|
||||
container_name: forgejo
|
||||
restart: always
|
||||
environment:
|
||||
- USER_UID=1000
|
||||
- USER_GID=1000
|
||||
- FORGEJO__database__DB_TYPE=postgres
|
||||
- FORGEJO__database__HOST=db:5432
|
||||
- FORGEJO__database__HOST=db #:5432
|
||||
- FORGEJO__database__NAME=${DB_NAME}
|
||||
- FORGEJO__database__USER=${DB_USER}
|
||||
- FORGEJO__database__PASSWD=${DB_PASSWORD}
|
||||
|
@ -25,12 +25,12 @@ services:
|
|||
- db
|
||||
|
||||
db:
|
||||
image: postgres:14 # could be changed to latest maybe
|
||||
image: postgres:latest # postgres:14
|
||||
restart: always
|
||||
environment:
|
||||
- POSTGRES_DB=${DB_NAME}
|
||||
- POSTGRES_USER=${DB_USER}
|
||||
- POSTGRES_PASSWORD=${DB_PASSWORD}
|
||||
- POSTGRES_DB=${DB_NAME}
|
||||
networks:
|
||||
- forgejo
|
||||
volumes:
|
||||
|
|
Loading…
Add table
Reference in a new issue