hetzner gitea
This commit is contained in:
commit
093abdc520
16
hetzner/gitea/docker-compose.yml
Normal file
16
hetzner/gitea/docker-compose.yml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
version: "2"
|
||||||
|
|
||||||
|
services:
|
||||||
|
server:
|
||||||
|
image: gitea/gitea:1.17.3-rootless
|
||||||
|
environment:
|
||||||
|
- GITEA__server__ROOT_URL=http://135.181.195.235:3000/
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ./data:/var/lib/gitea
|
||||||
|
- ./config:/etc/gitea
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
ports:
|
||||||
|
- "3000:3000"
|
||||||
|
- "2222:2222"
|
25
hetzner/mysql/docker-compose.yml
Normal file
25
hetzner/mysql/docker-compose.yml
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
version: '3.3'
|
||||||
|
services:
|
||||||
|
db:
|
||||||
|
image: mysql:5.7
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
MYSQL_DATABASE: 'db'
|
||||||
|
# So you don't have to use root, but you can if you like
|
||||||
|
MYSQL_USER: 'user'
|
||||||
|
# You can use whatever password you like
|
||||||
|
MYSQL_PASSWORD: 'test123321'
|
||||||
|
# Password for root access
|
||||||
|
MYSQL_ROOT_PASSWORD: 'test123321'
|
||||||
|
ports:
|
||||||
|
# <Port exposed> : < MySQL Port running inside container>
|
||||||
|
- '3306:3306'
|
||||||
|
expose:
|
||||||
|
# Opens port 3306 on the container
|
||||||
|
- '3306'
|
||||||
|
# Where our data will be persisted
|
||||||
|
volumes:
|
||||||
|
- my-db:/var/lib/mysql
|
||||||
|
# Names our volume
|
||||||
|
volumes:
|
||||||
|
my-db:
|
Loading…
Reference in New Issue
Block a user