mirror of
https://github.com/trambarhq/relaks-wordpress-example.git
synced 2025-08-31 20:01:51 +02:00
39 lines
810 B
YAML
39 lines
810 B
YAML
version: "2"
|
|
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
volumes:
|
|
- ./server/nginx-remote:/etc/nginx/conf.d
|
|
- web_cache:/var/cache/nginx
|
|
networks:
|
|
network:
|
|
ipv4_address: 172.130.0.5
|
|
ports:
|
|
- 8000:80
|
|
restart: always
|
|
node:
|
|
depends_on:
|
|
- nginx
|
|
image: node:8
|
|
volumes:
|
|
- .:/opt/example
|
|
- web_cache:/var/cache/nginx
|
|
networks:
|
|
network:
|
|
ipv4_address: 172.130.0.4
|
|
environment:
|
|
WORDPRESS_HOST: https://www.extremetech.com
|
|
NGINX_HOST: http://nginx
|
|
NGINX_CACHE: /var/cache/nginx/data
|
|
command: [ node, /opt/example/server/index.js ]
|
|
restart: always
|
|
volumes:
|
|
web_cache:
|
|
networks:
|
|
network:
|
|
driver: bridge
|
|
ipam:
|
|
config:
|
|
- subnet: 172.130.0.0/16
|
|
gateway: 172.130.0.1
|