source: OpenRLabs-Git/deploy/rlabs-docker/web2py-rlabs/docker/stack/web2py-rocket-ssl-nginx-memcached/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: 797 bytes
Line 
1version: '3.1'
2
3services:
4  web2py-rocket-ssl:
5    build:
6      context: .
7      dockerfile: web2py-rocket-ssl
8    container_name: web2py-rocket-ssl
9    ports:
10      - "443:443"
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
26  web2py-memcached:
27    build:
28      context: .
29      dockerfile: web2py-memcached
30    container_name: web2py-memcached
31    networks:
32      web2py-net:
33        ipv4_address: 172.25.0.24
34
35networks:
36  web2py-net:
37    driver: bridge
38    ipam:
39     config:
40       - subnet: 172.25.0.0/16
41
42volumes:
43  applications:
Note: See TracBrowser for help on using the repository browser.