xssbook2/docker-compose.yml
2024-05-20 17:11:38 -04:00

79 lines
1.5 KiB
YAML

services:
web:
image: nginx:alpine
restart: unless-stopped
ports:
- '80:80'
volumes:
- ./src:/opt/xssbook:ro
- ./conf/nginx:/etc/nginx/conf.d:ro
depends_on:
- rest
- swagger
- php
php:
build: ./build/php
restart: unless-stopped
env_file:
- ./conf/postgres/database.env
volumes:
- ./src:/opt/xssbook:ro
- ./data/status:/status:ro
- ./data/session:/var/lib/php/session
depends_on:
- db
db:
#image: postgres:16-alpine
build: ./build/postgres
restart: unless-stopped
env_file:
- ./conf/postgres/database.env
environment:
- POSTGRES_INITDB_ARGS=--encoding=UTF-8 --lc-collate=C --lc-ctype=C
volumes:
- './data/schemas:/var/lib/postgresql/data'
- ./src/db:/db:ro
rest:
build: ./build/postgrest
restart: unless-stopped
env_file:
- ./conf/postgres/database.env
depends_on:
- db
init:
build: ./build/init
restart: no
env_file:
- ./conf/postgres/database.env
volumes:
- ./src/db:/db:ro
- ./data/status:/status
depends_on:
- db
shim:
build: ./build/shim
restart: no
env_file:
- ./conf/postgres/database.env
volumes:
- ./src/shim:/opt/shim:ro
- ./data/status:/status:ro
- ./data/shim/:/data:ro
depends_on:
- db
swagger:
image: swaggerapi/swagger-ui
restart: unless-stopped
environment:
SWAGGER_JSON_URL: '/api'
BASE_URL: '/apidocs'
PORT: 3000
depends_on:
- db