Skip to content

Instantly share code, notes, and snippets.

@alexvuta
Last active July 22, 2019 21:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexvuta/1898972a110547a702a58f38c4fbb17a to your computer and use it in GitHub Desktop.
Save alexvuta/1898972a110547a702a58f38c4fbb17a to your computer and use it in GitHub Desktop.
Docker compose shared network
docker run -e WORDPRESS_DB_HOST=127.0.0.1:3306 -e WORDPRESS_DB_USER=root -e WORDPRESS_DB_PASSWORD=password --network specific-network-name -P wordpress
https://github.com/ridi/gitlab-dind-runner
https://blog.heavycookie.co/posts/gitlab-ci-docker-compose/
version: '3.5'
services:
db:
image: mysql:5.7
restart: always
networks:
- default
- specific-network-name
hostname: database
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>
- '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
networks:
specific-network-name:
external: false
name: specific-network-name
volumes:
my-db:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment