mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-14 11:23:02 +02:00
18 lines
272 B
YAML
18 lines
272 B
YAML
|
gogs:
|
||
|
image: easypi/gogs-arm
|
||
|
ports:
|
||
|
- "2222:22"
|
||
|
- "3000:3000"
|
||
|
volumes:
|
||
|
- ./data:/data
|
||
|
restart: always
|
||
|
|
||
|
db:
|
||
|
image: easypi/mariadb-arm
|
||
|
ports:
|
||
|
- "3306:3306"
|
||
|
environment:
|
||
|
- MYSQL_ROOT_PASSWORD=root
|
||
|
- MYSQL_DATABASE=gogs
|
||
|
restart: always
|