27 lines
396 B
YAML
27 lines
396 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
app:
|
|
build: .
|
|
container_name: ruby-sinatra
|
|
ports:
|
|
- "5000:5000"
|
|
networks:
|
|
- app-network
|
|
|
|
nginx:
|
|
image: nginx
|
|
container_name: nginx_ruby
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- ../nginx.conf:/etc/nginx/nginx.conf:ro
|
|
depends_on:
|
|
- app
|
|
networks:
|
|
- app-network
|
|
|
|
networks:
|
|
app-network:
|
|
driver: bridge
|