简体   繁体   中英

rancher network docker-compose

compose this .yml

version: '2'
services:
  wordpress:
    image: wordpress:latest
    expose:
      - 80
    restart: always
    networks:
      - nginx-proxy
    environment:
      - VIRTUAL_HOST=blog.gerling.one
    container_name: wordpress

networks:
  nginx-proxy:
    external: true

when i run the docker-compose.yml with

docker-compose up

the container starts with Network: nginx-proxy -> all Works

but when i start with

rancher-compose <API SETTINGS> up

the container starts with Network: Managed and nothing works

Yeah its right that nothing works but how i can start with nginx-proxy in rancheros?

Thanks for the help.

Networking in Rancher is different from Docker. So the docker compose file doesn't work as-is. To achieve what you are trying to accomplish there are a few options:

  • Checkout the Wordpress Catalog item in Rancher Catalog
  • Manually start Wordpress service and create a Load Balancer in Rancher UI and use the Host information there.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM