source: OpenRLabs-Git/deploy/rlabs-docker/web2py-rlabs/docker/stack/web2py-rocket-ssl-nginx-db-adminer/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: 988 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-db:
27    build:
28      context: .
29      dockerfile: web2py-db
30    container_name: web2py-db
31    networks:
32      web2py-net:
33        ipv4_address: 172.25.0.24
34
35  web2py-adminer:
36    build:
37      context: .
38      dockerfile: web2py-adminer
39    container_name: web2py-adminer
40    ports:
41      - "8080:8080"
42    networks:
43      web2py-net:
44        ipv4_address: 172.25.0.25
45
46networks:
47  web2py-net:
48    driver: bridge
49    ipam:
50     config:
51       - subnet: 172.25.0.0/16
52
53volumes:
54  applications:
Note: See TracBrowser for help on using the repository browser.