Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: '3.8'
- services:
- backend-1:
- image: ubuntu/apache2
- container_name: balancer.app-1
- restart: always
- ports:
- - "8000:80"
- networks:
- - balancer.app-net
- volumes:
- - /srv/balancer.app:/var/www/html
- backend-2:
- image: ubuntu/apache2
- container_name: balancer.app-2
- restart: always
- ports:
- - "8001:80"
- networks:
- - balancer.app-net
- volumes:
- - /srv/balancer.app:/var/www/html
- networks:
- balancer.app-net:
- driver: bridge
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement