xrg.es/docker/docker-compose.prod.yml

26 lines
497 B
YAML
Raw Normal View History

2022-01-10 12:41:59 +00:00
version: '3.8'
services:
xrges-nginx:
2022-01-11 07:35:48 +00:00
image: registry.xrg.io/xrges/nginx:latest
2022-01-10 12:41:59 +00:00
restart: unless-stopped
ports:
- "8086:80"
links:
- xrges-php
xrges-php:
2022-01-11 07:35:48 +00:00
image: registry.xrg.io/xrges/php:latest
2022-01-10 12:41:59 +00:00
restart: unless-stopped
xrges-redis:
2022-01-11 07:35:48 +00:00
image: registry.xrg.io/xrges/redis:latest
2022-01-10 12:41:59 +00:00
restart: unless-stopped
volumes:
2022-01-11 07:16:54 +00:00
- ./redis:/data
2022-01-10 12:41:59 +00:00
command: [ "redis-server", "/usr/local/etc/redis/redis.conf" ]
networks:
default:
name: xrges-network