source: OpenRLabs-Git/deploy/rlabs-docker/web2py-rlabs/docker/stack/web2py-gunicorn-nginx/docker-compose.yml

main
Last change on this file was 42bd667, checked in by David Fuertes <dfuertes@…>, 4 years ago

Historial Limpio

  • Property mode set to 100755
File size: 614 bytes
Line 
1version: '3.1'
2
3services:
4  web2py-gunicorn:
5    build:
6      context: .
7      dockerfile: web2py-gunicorn
8    container_name: web2py-gunicorn
9    ports:
10      - "9005:9005"
11    networks:
12      web2py-net:
13        ipv4_address: 172.25.0.22
14    volumes:
15      - applications:/home/web2py/web2py/applications
16       
17  web2py-nginx:
18    build:
19      context: .
20      dockerfile: web2py-nginx
21    container_name: web2py-nginx
22    networks:
23      web2py-net:
24        ipv4_address: 172.25.0.23
25
26networks:
27  web2py-net:
28    driver: bridge
29    ipam:
30     config:
31       - subnet: 172.25.0.0/16
32
33volumes:
34  applications:
Note: See TracBrowser for help on using the repository browser.