cat ARCHIVE-agis-mysql.yml
version: '3.3'
services:
agis-mysql-db:
image: "mysql:5.7"
#user: "1000:1000"
container_name: agis-mysql-db
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: 'password'
# Password for root access
MYSQL_ROOT_PASSWORD: 'password'
ports:
# <Port exposed> : < MySQL Port running inside container>
- '3335:3306'
expose:
# Opens port 3306 on the container
- '3306'
# Where our data will be persisted
volumes:
- ./agis-mysql-db:/var/lib/mysql
networks:
default:
external:
name: agis-net