Skip to content

Instantly share code, notes, and snippets.

@ajeetraina
Created October 29, 2017 12:21
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save ajeetraina/defff61db96b88144509d728196d7853 to your computer and use it in GitHub Desktop.
Save ajeetraina/defff61db96b88144509d728196d7853 to your computer and use it in GitHub Desktop.
Docker Compose File for MacVLAN Network Driver ( Single Node)
version: '3.3'
services:
db:
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
networks:
- myvlan
environment:
MYSQL_ROOT_PASSWORD: wordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
wordpress:
depends_on:
- db
image: wordpress:latest
ports:
- "8000:80"
restart: always
networks:
- myvlan
environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_PASSWORD: wordpress
volumes:
db_data:
networks:
private:
myvlan:
driver: macvlan
driver_opts:
parent: ens160.30
ipam:
config:
- subnet: 100.98.26.0/24
@antoineco
Copy link

@kcallis notice the very first line in the compose file, the version matters.

@coLATin
Copy link

coLATin commented Mar 28, 2020

followed this code but error popup:
"ERROR: yaml.scanner.ScannerError: mapping values are not allowed here
in "./docker-compose.yaml", line 113, column 18"
截屏2020-03-28下午9 53 13

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment