Chasing66 / DockerComposeFile

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DockerComposeFile

cat usage

cat > docker-compose.yml <<EOF
version: "3.7"
services:
  nginx:
    image: nginx:alpine
    container_name: nginx
    restart: unless-stopped
    volumes:
      - ./html:/usr/share/nginx/html:ro
    ports:
      - 180:80
EOF

docker-compose up -f

docker-compose -f docker-compose.yml up -d

About

License:Apache License 2.0