Files
2019-05-18 22:18:24 -07:00

44 lines
785 B
YAML

version: '3.1'
services:
web2py-rocket-ssl:
build:
context: .
dockerfile: web2py-rocket-ssl
container_name: web2py-rocket-ssl
ports:
- "443:443"
networks:
web2py-net:
ipv4_address: 172.25.0.22
volumes:
- applications:/home/web2py/web2py/applications
web2py-nginx:
build:
context: .
dockerfile: web2py-nginx
container_name: web2py-nginx
networks:
web2py-net:
ipv4_address: 172.25.0.23
web2py-redis:
build:
context: .
dockerfile: web2py-redis
container_name: web2py-redis
networks:
web2py-net:
ipv4_address: 172.25.0.24
networks:
web2py-net:
driver: bridge
ipam:
config:
- subnet: 172.25.0.0/16
volumes:
applications: