Skip to content

Instantly share code, notes, and snippets.

@jose16-21
Created November 30, 2022 10:00
Show Gist options
  • Save jose16-21/ec4ee7395eb66fae0250fa10d92aa158 to your computer and use it in GitHub Desktop.
Save jose16-21/ec4ee7395eb66fae0250fa10d92aa158 to your computer and use it in GitHub Desktop.
docker-compose mysql
version: '3.3'
services:
mysql:
image: mysql
restart: always
container_name: mysql
environment:
MYSQL_DATABASE: db
MYSQL_USER: test
MYSQL_PASSWORD: root
MYSQL_ROOT_PASSWORD: root
ports:
- '3306:3306'
networks:
default:
name: mynetwork
external: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment