26 lines
636 B
YAML
26 lines
636 B
YAML
version: '3.3'
|
|
services:
|
|
db:
|
|
image: mysql:5.7
|
|
restart: always
|
|
environment:
|
|
MYSQL_DATABASE: 'gitea'
|
|
# So you don't have to use root, but you can if you like
|
|
MYSQL_USER: 'gitea'
|
|
# You can use whatever password you like
|
|
MYSQL_PASSWORD: 'gitea'
|
|
# Password for root access
|
|
MYSQL_ROOT_PASSWORD: 'gitea'
|
|
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:
|